initial commit

This commit is contained in:
2025-05-25 22:09:31 +02:00
commit e8b832addc
19 changed files with 1177 additions and 0 deletions

24
pyproject.toml Normal file
View File

@@ -0,0 +1,24 @@
[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",
]
[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/*"
]