Squash merge feature/library-reorganization

This commit is contained in:
Codex
2026-04-22 06:46:23 -05:00
parent 7f4a4beb5a
commit fe2a04343c
72 changed files with 14520 additions and 0 deletions

31
backend/pyproject.toml Normal file
View File

@@ -0,0 +1,31 @@
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "walkup-backend"
version = "0.1.0"
description = "FastAPI backend for the Walkup PWA"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.115,<1.0",
"uvicorn[standard]>=0.30,<1.0",
"sqlalchemy>=2.0,<3.0",
"psycopg[binary]>=3.2,<4.0",
"pydantic-settings>=2.4,<3.0",
"python-multipart>=0.0.9,<1.0",
"httpx>=0.27,<1.0",
"yt-dlp>=2024.5.27,<2026.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3,<9.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools.packages.find]
where = ["."]
include = ["app*"]