Django-5.2-Projekt mit uv, django-environ und Docker-Compose-Setup (web + Postgres, WeasyPrint-Systembibliotheken im Image). Vollständiges Datenmodell (Firma, Therapeut, Auftraggeber, Teilnehmer, Leistungsart, Leistung, InvoiceLog, InvoiceCounter) mit Admin, Login-Flow und Platzhalter-Dashboard. Fortschritt in FORTSCHRITT.md. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016yy3uodsai6Ytt3GJ7tBdz
33 lines
725 B
TOML
33 lines
725 B
TOML
[project]
|
|
name = "abrechnungssystem"
|
|
version = "0.1.0"
|
|
description = "Django ZUGFeRD Abrechnungssystem für Therapie- und Sozialdienste"
|
|
requires-python = ">=3.13,<3.14"
|
|
dependencies = [
|
|
"django>=5.2,<5.3",
|
|
"django-environ>=0.11",
|
|
"psycopg[binary]>=3.2",
|
|
"gunicorn>=23.0",
|
|
"whitenoise>=6.8",
|
|
"weasyprint>=63",
|
|
"drafthorse>=2024.1.0",
|
|
"factur-x>=3.3",
|
|
"django-crispy-forms>=2.3",
|
|
"crispy-bootstrap5>=2024.10",
|
|
"django-tables2>=2.7",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.3",
|
|
"pytest-django>=4.9",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
DJANGO_SETTINGS_MODULE = "config.settings"
|
|
python_files = ["test_*.py", "tests.py"]
|
|
testpaths = ["abrechnung/tests"]
|
|
|
|
[tool.uv]
|
|
package = false
|