25 lines
No EOL
476 B
TOML
25 lines
No EOL
476 B
TOML
[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"] |