Files
comiaunicaty/backend/pyproject.toml

34 lines
667 B
TOML

[project]
name = "grouphome-backend"
version = "0.1.0"
description = "FastAPI backend for the GroupHome browser-first group coordination platform."
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"sqlalchemy>=2.0.30",
"pydantic-settings>=2.4.0",
"python-multipart>=0.0.9",
"httpx>=0.27.0",
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["app*"]
[project.optional-dependencies]
test = [
"pytest>=8.2.0",
]
[tool.pytest.ini_options]
testpaths = ["app/tests"]
pythonpath = ["."]
[tool.ruff]
line-length = 140