Files

29 lines
517 B
TOML

[project]
name = "dvd-backend"
version = "0.1.0"
description = "DirektVermittlungDe reference backend"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"pydantic>=2.7.0",
"SQLAlchemy>=2.0.30",
"asyncpg>=0.29.0",
"aiobotocore>=2.15.0",
"python-jose[cryptography]>=3.3.0",
"redis>=5.0.0",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"httpx",
]
[tool.uvicorn]
factory = false
port = 8000
host = "0.0.0.0"
app = "app.main:app"