Squash merge feature/library-reorganization
This commit is contained in:
31
backend/pyproject.toml
Normal file
31
backend/pyproject.toml
Normal 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*"]
|
||||
Reference in New Issue
Block a user