22 lines
481 B
TOML
22 lines
481 B
TOML
[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"]
|