fastfood/pyproject.toml

35 lines
671 B
TOML
Raw Normal View History

2024-01-18 21:15:56 +03:00
[tool.poetry]
name = "fastfood"
version = "0.1.0"
description = ""
authors = ["pi3c <pi3c@yandex.ru>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
sqlalchemy = "^2.0.25"
fastapi = "^0.109.0"
uvicorn = "^0.26.0"
asyncpg = "^0.29.0"
pydantic-settings = "^2.1.0"
email-validator = "^2.1.0.post1"
2024-01-26 00:23:38 +03:00
pytest-asyncio = "^0.23.3"
2024-02-02 08:04:02 +03:00
redis = "^5.0.1"
2024-01-18 21:15:56 +03:00
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.4"
2024-01-31 01:55:12 +03:00
pytest-cov = "^4.1.0"
httpx = "^0.26.0"
2024-01-18 21:15:56 +03:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = ". fastfood"
2024-01-26 00:23:38 +03:00
filterwarnings = [
"ignore::UserWarning",
"ignore::DeprecationWarning"
]