Spaces:
Running
Running
File size: 428 Bytes
30cf758 6518b31 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | [build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sql-debug-env"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"fastapi==0.115.0",
"uvicorn[standard]==0.30.6",
"pydantic==2.9.2",
"openenv-core>=0.1.0",
"openai>=1.50.0",
"httpx>=0.27.0",
"python-multipart==0.0.9"
]
[project.scripts]
server = "server.app:main"
graphify = "graphify.cli:main"
|