31 lines
637 B
TOML
31 lines
637 B
TOML
[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"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pre-commit = "^3.8.0"
|
|
pytest = "^8.3.2"
|
|
pytest-asyncio = "^0.23.8"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
api = "fastfood_two.__main__:main"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|