fastfood_two/pyproject.toml

36 lines
758 B
TOML
Raw Normal View History

2024-08-16 02:20:58 +03:00
[tool.poetry]
name = "fastfood-two"
version = "0.2.0"
description = "y_lab intensive project"
authors = ["Sergey Vanyushkin <pi3c@yandex.ru>"]
readme = "README.md"
packages = [{include = "fastfood_two", from = "src"}]
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.112.0"
celery = "^5.4.0"
redis = "^5.0.8"
uvicorn = "^0.30.6"
2024-08-18 13:16:34 +03:00
sqlalchemy = "^2.0.32"
asyncpg = "^0.29.0"
alembic = "^1.13.2"
2024-08-16 02:20:58 +03:00
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.8.0"
pytest = "^8.3.2"
pytest-asyncio = "^0.23.8"
2024-08-21 01:37:46 +03:00
pytest-flakefinder = "^1.1.0"
pytest-randomly = "^3.15.0"
2024-08-16 02:20:58 +03:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
2024-08-16 15:28:46 +03:00
[tool.poetry.scripts]
api = "fastfood_two.__main__:main"
2024-08-16 02:20:58 +03:00
[tool.pytest.ini_options]
asyncio_mode = "auto"