urma/pyproject.toml
2023-01-15 20:50:57 +00:00

35 lines
730 B
TOML

[tool.poetry]
name = "urma"
version = "0.1.0"
description = ""
authors = ["Keith Edmunds <kae@midnighthax.com>"]
[tool.poetry.dependencies]
python = "^3.9"
"Mastodon.py" = "^1.8.0"
stackprinter = "^0.2.10"
SQLAlchemy = "^1.4.45"
mysqlclient = "^2.1.1"
alembic = "^1.9.1"
[tool.poetry.dev-dependencies]
ipdb = "^0.13.11"
pytest-env = "^0.8.1"
pdbpp = "^0.10.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
mypy_path = "/home/kae/.cache/pypoetry/virtualenvs/urma-e3I_sS5U-py3.9:/home/kae/git/urma/app"
plugins = "sqlalchemy.ext.mypy.plugin"
[tool.pytest.ini_options]
addopts = "-xls --pdb"
[tool.vulture]
exclude = ["migrations"]
paths = ["app"]
make_whitelist = true