feat(FN-002): complete Step 3 — FastAPI Backend App Skeleton

This commit is contained in:
Fusion
2026-05-14 01:31:58 +02:00
parent 79203d2f0f
commit 80f04a5c45
12 changed files with 148 additions and 0 deletions
@@ -0,0 +1,13 @@
Metadata-Version: 2.4
Name: headquarter-api
Version: 0.0.1
Summary: Headquarter FastAPI backend
Requires-Python: >=3.11
Requires-Dist: fastapi>=0.115.0
Requires-Dist: uvicorn[standard]>=0.34.0
Requires-Dist: pydantic-settings>=2.8.0
Provides-Extra: dev
Requires-Dist: pytest>=8.3.0; extra == "dev"
Requires-Dist: httpx>=0.28.0; extra == "dev"
Requires-Dist: ruff>=0.11.0; extra == "dev"
Requires-Dist: mypy>=1.15.0; extra == "dev"
@@ -0,0 +1,10 @@
pyproject.toml
app/__init__.py
app/config.py
app/main.py
headquarter_api.egg-info/PKG-INFO
headquarter_api.egg-info/SOURCES.txt
headquarter_api.egg-info/dependency_links.txt
headquarter_api.egg-info/requires.txt
headquarter_api.egg-info/top_level.txt
tests/test_health.py
@@ -0,0 +1 @@
@@ -0,0 +1,9 @@
fastapi>=0.115.0
uvicorn[standard]>=0.34.0
pydantic-settings>=2.8.0
[dev]
pytest>=8.3.0
httpx>=0.28.0
ruff>=0.11.0
mypy>=1.15.0
@@ -0,0 +1 @@
app