sql-correction-env / pyproject.toml
sravaniamere's picture
Fix server entrypoint packaging and align environment docs
1a1713a
Raw
History Blame
437 Bytes
[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"