M0: scaffold — uv project, FastAPI health, pytest

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
team3
2026-07-23 00:21:10 +02:00
commit 0a4c9a131a
8 changed files with 510 additions and 0 deletions

23
backend/pyproject.toml Normal file
View File

@@ -0,0 +1,23 @@
[project]
name = "tft"
version = "0.1.0"
description = "TFT round simulator for practice"
requires-python = ">=3.12"
dependencies = [
"fastapi",
"uvicorn",
"requests",
]
[dependency-groups]
dev = [
"pytest",
"httpx",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["tft"]