scores/pyproject.toml
2022-10-31 22:11:05 +01:00

33 lines
No EOL
684 B
TOML

[tool.poetry]
name = "scores"
version = "0.1.0"
description = "A highscore server for multiple games with easy moderation options"
authors = ["peacememories <peace@peacememori.es>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
fastapi = {extras = ["all"], version = "^0.85.1"}
aerich = "^0.7.1"
tortoise-orm = "^0.19.2"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.0"
mypy = "^0.982"
pre-commit = "^2.20.0"
sqlalchemy-stubs = "^0.4"
isort = "^5.10.1"
[tool.aerich]
tortoise_orm = "database.CONFIG"
location = "./migrations"
src_folder = "./."
[tool.mypy]
files="."
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"