34 lines
721 B
TOML
34 lines
721 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"
|
|
PyQt5 = "^5.15.7"
|
|
PyQt5-sip = "^12.11.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^5.2"
|
|
ipdb = "^0.13.11"
|
|
PyQt5-stubs = "^5.15.6"
|
|
|
|
[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.vulture]
|
|
exclude = ["migrations"]
|
|
paths = ["app"]
|
|
make_whitelist = true
|