File size: 676 Bytes
2da45df
 
 
 
 
 
2194233
 
 
 
 
 
2da45df
 
2194233
 
 
2da45df
 
 
 
 
1f2495e
 
 
1a1713a
2194233
 
 
 
 
 
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
28
29
30
31
32
33
[project]
name = "sql-correction-env"
version = "1.0.0"
description = "OpenEnv SQL Query Correction RL Environment"
requires-python = ">=3.11"
dependencies = [
    "fastapi>=0.135.0",
    "uvicorn>=0.43.0",
    "pydantic>=2.12.0",
    "httpx>=0.28.1",
    "openai>=2.7.2",
    "openenv-core==0.2.3",
]

[project.optional-dependencies]
dev = ["pytest>=8.0.0"]

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["sql_env"]

[project.scripts]
server = "sql_env.server:main"

[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]