28 lines
588 B
TOML
28 lines
588 B
TOML
|
|
[project]
|
||
|
|
name = "antragstracker-hagen"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Automatisierte Nachverfolgung kommunaler Anträge und Anfragen in Hagen"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
dependencies = [
|
||
|
|
"fastapi>=0.110",
|
||
|
|
"uvicorn>=0.29",
|
||
|
|
"httpx>=0.27",
|
||
|
|
"aiosqlite>=0.20",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
dev = [
|
||
|
|
"pytest>=8.0",
|
||
|
|
"ruff>=0.4",
|
||
|
|
]
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
pythonpath = ["backend/src"]
|
||
|
|
filterwarnings = [
|
||
|
|
"ignore::DeprecationWarning:tracker.core.chains",
|
||
|
|
]
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=68"]
|
||
|
|
build-backend = "setuptools.backends._legacy:_Backend"
|