Spaces:
Sleeping
Sleeping
Commit ·
103084b
1
Parent(s): 1648513
add pyproject for openenv validation
Browse files- pyproject.toml +16 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "openenv-workflow-agent"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "OpenEnv workflow environment for decision-making under uncertainty"
|
| 5 |
+
authors = [{name = "Sachin Mishra"}]
|
| 6 |
+
dependencies = [
|
| 7 |
+
"pydantic",
|
| 8 |
+
"fastapi",
|
| 9 |
+
"uvicorn",
|
| 10 |
+
"openai",
|
| 11 |
+
"pyyaml"
|
| 12 |
+
]
|
| 13 |
+
|
| 14 |
+
[build-system]
|
| 15 |
+
requires = ["setuptools", "wheel"]
|
| 16 |
+
build-backend = "setuptools.build_meta"
|