32 lines
660 B
TOML
32 lines
660 B
TOML
[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*"]
|