Spaces:
Sleeping
Sleeping
Mahir commited on
Commit ·
a55d5e5
1
Parent(s): 5b6efd8
Add pyproject.toml for OpenEnv multi-mode deployment validation
Browse files- pyproject.toml +30 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=61.0"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "openenv-support"
|
| 7 |
+
version = "2.0.0"
|
| 8 |
+
description = "Multi-Domain AI Agent Evaluation Environment"
|
| 9 |
+
readme = "README.md"
|
| 10 |
+
requires-python = ">=3.11"
|
| 11 |
+
authors = [
|
| 12 |
+
{ name = "OpenEnv Contributor" }
|
| 13 |
+
]
|
| 14 |
+
classifiers = [
|
| 15 |
+
"Programming Language :: Python :: 3",
|
| 16 |
+
"License :: OSI Approved :: Apache Software License",
|
| 17 |
+
"Operating System :: OS Independent",
|
| 18 |
+
]
|
| 19 |
+
dependencies = [
|
| 20 |
+
"fastapi>=0.115.6",
|
| 21 |
+
"uvicorn[standard]>=0.32.1",
|
| 22 |
+
"pydantic>=2.10.3",
|
| 23 |
+
"httpx>=0.28.1",
|
| 24 |
+
"openai>=1.58.1",
|
| 25 |
+
"python-multipart>=0.0.20",
|
| 26 |
+
"pyyaml>=6.0.2",
|
| 27 |
+
"datasets>=2.21.0",
|
| 28 |
+
"huggingface-hub>=0.24.0",
|
| 29 |
+
"sentence-transformers>=3.1.1"
|
| 30 |
+
]
|