Spaces:
Sleeping
Sleeping
File size: 437 Bytes
2da45df 1f2495e 1a1713a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | [project]
name = "sql-correction-env"
version = "1.0.0"
description = "OpenEnv SQL Query Correction RL Environment"
requires-python = ">=3.11"
dependencies = [
"fastapi",
"uvicorn",
"pydantic",
"httpx",
"openai",
"openenv-core",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["sql_env"]
[project.scripts]
server = "sql_env.server:main"
|