Spaces:
Sleeping
Sleeping
ReverseCoder1 commited on
Commit ·
c4ebaaa
1
Parent(s): 903c34d
add toml file
Browse files- pyproject.toml +27 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=68", "wheel"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "data-cleaning-openenv"
|
| 7 |
+
version = "1.0.0"
|
| 8 |
+
description = "OpenEnv-compatible data cleaning environment for RL and LLM agents."
|
| 9 |
+
readme = "README.md"
|
| 10 |
+
requires-python = ">=3.10"
|
| 11 |
+
license = { text = "MIT" }
|
| 12 |
+
authors = [
|
| 13 |
+
{ name = "thorodin103" }
|
| 14 |
+
]
|
| 15 |
+
dependencies = [
|
| 16 |
+
"fastapi==0.104.1",
|
| 17 |
+
"uvicorn==0.24.0",
|
| 18 |
+
"pydantic==2.5.0",
|
| 19 |
+
"pandas==2.1.3",
|
| 20 |
+
"numpy==1.26.2",
|
| 21 |
+
"openai==1.3.7",
|
| 22 |
+
"PyYAML==6.0.1",
|
| 23 |
+
"python-dotenv==1.0.0"
|
| 24 |
+
]
|
| 25 |
+
|
| 26 |
+
[tool.setuptools]
|
| 27 |
+
py-modules = ["main", "environment", "models", "inference"]
|