Spaces:
Sleeping
Sleeping
File size: 454 Bytes
3e61438 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | [project]
name = "sql-query-debugger"
version = "1.0.0"
description = "An RL environment where an AI agent debugs broken SQL queries"
requires-python = ">=3.11"
dependencies = [
"openenv-core>=0.2.0",
"fastapi>=0.115.0",
"uvicorn>=0.24.0",
"pydantic>=2.0.0",
]
[project.scripts]
server = "server.app:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["server"]
|