AW: theCure

This commit is contained in:
2025-08-27 19:15:08 +02:00
commit 5eab37082c
32 changed files with 1188 additions and 0 deletions

21
backend/pyporject.toml Normal file
View File

@@ -0,0 +1,21 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "codeless-platform-backend"
version = "0.1.0"
description = "FastAPI + SQLAlchemy backend for the codeless platform"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.110",
"uvicorn[standard]>=0.30",
"sqlalchemy>=2.0",
"asyncpg>=0.29",
"pydantic>=2.7",
"python-dotenv>=1.0",
]
[tool.setuptools.packages.find]
where = ["app"]
exclude = ["tests"]