-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 853 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 853 Bytes
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
34
35
36
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "sql-optim-env"
version = "2.0.0"
description = "OpenEnv-compliant RL environment for AI SQL query optimization agents."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
keywords = ["openenv", "sql", "database", "optimization", "rl", "reinforcement-learning", "llm-agent"]
dependencies = [
"fastapi==0.115.0",
"uvicorn[standard]==0.30.6",
"pydantic==2.8.2",
"openai>=1.0.0",
"pyyaml==6.0.2",
"requests==2.32.3",
"openenv-core>=0.2.0",
]
[project.scripts]
server = "server.app:main"
[project.optional-dependencies]
dev = ["pytest", "httpx"]
[tool.setuptools.packages.find]
where = ["."]
include = ["*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]