26 lines
469 B
TOML
26 lines
469 B
TOML
[project]
|
|
name = "choriosity-anmeldung"
|
|
version = "0.1.0"
|
|
description = "Choriosity Anmeldung"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi[standard]>=0.115.12",
|
|
"pydantic>=2.11.5",
|
|
"pydantic-settings>=2.9.1",
|
|
"sqlmodel>=0.0.24",
|
|
"tzdata>=2025.2",
|
|
]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"httpx>=0.28.1",
|
|
"pytest<8.0.0,>=7.4.3",
|
|
"ruff<1.0.0,>=0.2.2",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = [
|
|
"app/tests/*"
|
|
]
|