life-towers/backend/pyproject.toml
2026-05-28 21:24:47 +01:00

40 lines
799 B
TOML

[project]
name = "life-towers"
version = "0.1.0"
description = "Life Towers FastAPI backend"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.111.0",
"uvicorn[standard]>=0.29.0",
"slowapi>=0.1.9",
"structlog>=24.1.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"httpx>=0.27.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/life_towers"]
[tool.hatch.build.targets.wheel.force-include]
"src/life_towers/migrations" = "life_towers/migrations"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"httpx>=0.27.0",
]