Spaces:
Sleeping
Sleeping
Commit ·
5815846
1
Parent(s): 9d80735
Add pyproject.toml for openenv validate
Browse files- pyproject.toml +28 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=61.0"]
|
| 3 |
+
build-backend = "setuptools.backends.legacy:build"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "sql-query-debugger"
|
| 7 |
+
version = "1.0.0"
|
| 8 |
+
description = "OpenEnv-compliant RL environment for SQL query debugging"
|
| 9 |
+
requires-python = ">=3.10"
|
| 10 |
+
dependencies = [
|
| 11 |
+
"fastapi==0.135.2",
|
| 12 |
+
"uvicorn==0.42.0",
|
| 13 |
+
"pydantic==2.12.5",
|
| 14 |
+
"openai==2.30.0",
|
| 15 |
+
"python-dotenv==1.2.2",
|
| 16 |
+
"pytest==9.0.2",
|
| 17 |
+
"huggingface_hub==1.8.0",
|
| 18 |
+
]
|
| 19 |
+
|
| 20 |
+
[project.urls]
|
| 21 |
+
Homepage = "https://huggingface.co/spaces/junaid0600/sql-query-debugger"
|
| 22 |
+
Repository = "https://github.com/Mdjunaid06/SQL-QUERY-DEBUGGER"
|
| 23 |
+
|
| 24 |
+
[tool.openenv]
|
| 25 |
+
name = "sql-query-debugger"
|
| 26 |
+
version = "1.0.0"
|
| 27 |
+
entry_point = "api.server:app"
|
| 28 |
+
inference = "inference.py"
|