27 lines
688 B
TOML
27 lines
688 B
TOML
[tool.poetry]
|
|
name = "marquiz-metrics"
|
|
version = "0.1.0"
|
|
description = "Микросервис для автоматизации настройки Яндекс.Метрики для квизов Marquiz"
|
|
authors = ["Eugene Orlov <your@email.com>"]
|
|
readme = "README.md"
|
|
|
|
packages = [{include = "app"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
fastapi = "^0.116.1"
|
|
uvicorn = "^0.35.0"
|
|
httpx = "^0.28.1"
|
|
pydantic = "^2.11.7"
|
|
pydantic-settings = "^2.10.1"
|
|
python-dotenv = "^1.1.1"
|
|
loguru = "^0.7.3"
|
|
gunicorn = "^23.0.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^8.4.1"
|
|
pytest-asyncio = "^0.23.8"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api" |