US01-02: Establish Application and Database Foundation (#47)

This commit was merged in pull request #47.
This commit is contained in:
2026-07-15 16:33:25 +02:00
parent ffafa308de
commit a723b63d55
22 changed files with 821 additions and 1 deletions

View File

@@ -2,6 +2,19 @@
name = "photoanalyzer"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115",
"uvicorn>=0.30",
"sqlalchemy>=2.0",
"alembic>=1.13",
"pydantic>=2.7",
]
[project.optional-dependencies]
test = ["pytest>=8", "httpx>=0.27"]
[tool.ruff]
line-length = 100
[tool.pytest.ini_options]
testpaths = ["tests"]