inital commit, very early alpha stage

This commit is contained in:
2026-06-30 13:38:24 +02:00
parent f5530ad336
commit 70cf1a84ca
72 changed files with 14074 additions and 2 deletions

33
backend/pyproject.toml Normal file
View File

@@ -0,0 +1,33 @@
[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