scores/pyproject.toml

33 lines
684 B
TOML
Raw Normal View History

2022-10-30 14:08:17 +01:00
[tool.poetry]
name = "scores"
version = "0.1.0"
2022-10-30 20:24:05 +01:00
description = "A highscore server for multiple games with easy moderation options"
authors = ["peacememories <peace@peacememori.es>"]
2022-10-30 14:08:17 +01:00
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
fastapi = {extras = ["all"], version = "^0.85.1"}
2022-10-31 01:29:39 +01:00
aerich = "^0.7.1"
tortoise-orm = "^0.19.2"
2022-10-30 14:08:17 +01:00
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.0"
mypy = "^0.982"
pre-commit = "^2.20.0"
2022-10-30 15:37:49 +01:00
sqlalchemy-stubs = "^0.4"
2022-10-31 22:11:05 +01:00
isort = "^5.10.1"
2022-10-30 14:08:17 +01:00
2022-10-31 01:29:39 +01:00
[tool.aerich]
tortoise_orm = "database.CONFIG"
location = "./migrations"
src_folder = "./."
2022-10-31 21:48:52 +01:00
[tool.mypy]
files="."
2022-10-30 14:08:17 +01:00
[build-system]
requires = ["poetry-core"]
2022-10-31 21:48:52 +01:00
build-backend = "poetry.core.masonry.api"