Files
spiele-redaktion/pyproject.toml
2026-08-21 20:38:34 +00:00

37 lines
780 B
TOML

[project]
name = "spiele-redaktion"
version = "0.1.0"
description = "KI-Assistenz für Spielemagazin-Redaktionen — modularer Kern mit Plugin-Architektur"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"sqlalchemy>=2.0",
"jinja2>=3.1",
"python-multipart>=0.0.9",
"itsdangerous>=2.1",
"argon2-cffi>=23.1",
"apscheduler>=3.11,<4",
"httpx>=0.27",
"rapidfuzz>=3.14.5",
"weasyprint>=69.0",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"httpx>=0.27",
"freezegun>=1.5.5",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/redaktionskern"]
[tool.pytest.ini_options]
testpaths = ["tests"]