Spaces:
Runtime error
Runtime error
File size: 539 Bytes
0683cf4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | [build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sql-tutor-env"
version = "0.1.0"
description = "An OpenEnv RL environment for training LLM agents to fix broken SQL queries."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"openenv-core>=0.2.2",
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
]
[project.optional-dependencies]
dev = ["pytest", "httpx"]
[tool.hatch.build.targets.wheel]
only-include = [
"__init__.py",
"client.py",
"models.py",
"server",
]
|