shank commited on
Commit ·
d765986
1
Parent(s): f2ee2fc
Add pyproject.toml for OpenEnv validation
Browse files- pyproject.toml +21 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools", "wheel"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "agentdebugger-env"
|
| 7 |
+
version = "1.0.0"
|
| 8 |
+
description = "An OpenEnv-compliant debugging environment for AI agents"
|
| 9 |
+
readme = "README.md"
|
| 10 |
+
requires-python = ">=3.10"
|
| 11 |
+
dependencies = [
|
| 12 |
+
"fastapi==0.110.0",
|
| 13 |
+
"uvicorn==0.29.0",
|
| 14 |
+
"pydantic==2.6.4",
|
| 15 |
+
"openai==1.23.0",
|
| 16 |
+
"requests==2.31.0",
|
| 17 |
+
"python-dotenv==1.0.1",
|
| 18 |
+
"pytest==8.1.0",
|
| 19 |
+
"httpx==0.27.0",
|
| 20 |
+
"RestrictedPython==7.4"
|
| 21 |
+
]
|