Complete DVD-WP-0002 main codebase TDD kickoff
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 2s

This commit is contained in:
tegwick 2026-07-08 15:21:17 +02:00
parent 945460b84e
commit 11b862588f
12 changed files with 135 additions and 5 deletions

25
pyproject.toml Normal file
View file

@ -0,0 +1,25 @@
[project]
name = "direkt-vermittlung-de"
version = "0.1.0"
description = "DirektVermittlungDe production backend"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.7.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]