Spaces:
Sleeping
Sleeping
Aryanshh commited on
Commit ·
60ea8be
1
Parent(s): 5ecd8bc
build: Add pyproject.toml for OpenEnv multi-mode deployment validation
Browse files- pyproject.toml +23 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=61.0"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "openenv-email-triage"
|
| 7 |
+
version = "1.0.0"
|
| 8 |
+
description = "A real-world RL environment where an AI agent triages a synthetic corporate inbox."
|
| 9 |
+
readme = "README.md"
|
| 10 |
+
requires-python = ">=3.8"
|
| 11 |
+
dependencies = [
|
| 12 |
+
"fastapi",
|
| 13 |
+
"uvicorn[standard]",
|
| 14 |
+
"pydantic>=2.0",
|
| 15 |
+
"openai",
|
| 16 |
+
"hypothesis",
|
| 17 |
+
"pytest",
|
| 18 |
+
"pyyaml",
|
| 19 |
+
"httpx"
|
| 20 |
+
]
|
| 21 |
+
|
| 22 |
+
[tool.setuptools.packages.find]
|
| 23 |
+
include = ["email_triage*"]
|