Upload folder using huggingface_hub
Browse files- pyproject.toml +14 -20
- uv.lock +0 -0
pyproject.toml
CHANGED
|
@@ -5,27 +5,21 @@
|
|
| 5 |
# LICENSE file in the root directory of this source tree.
|
| 6 |
|
| 7 |
[build-system]
|
| 8 |
-
requires = ["setuptools>=
|
| 9 |
build-backend = "setuptools.build_meta"
|
| 10 |
|
| 11 |
[project]
|
| 12 |
-
name = "openenv-
|
| 13 |
version = "0.1.0"
|
| 14 |
-
description = "
|
| 15 |
-
|
|
|
|
| 16 |
dependencies = [
|
| 17 |
-
# Core OpenEnv runtime (provides FastAPI server + HTTP client types)
|
| 18 |
-
# install from github
|
| 19 |
-
# "openenv-core[core] @ git+https://github.com/meta-pytorch/OpenEnv.git",
|
| 20 |
"openenv-core[core]>=0.2.2",
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
# "torch>=2.0.0",
|
| 26 |
-
# "gymnasium>=0.29.0",
|
| 27 |
-
# "openspiel>=1.0.0",
|
| 28 |
-
# "smolagents>=1.22.0,<2",
|
| 29 |
]
|
| 30 |
|
| 31 |
[project.optional-dependencies]
|
|
@@ -35,11 +29,11 @@ dev = [
|
|
| 35 |
]
|
| 36 |
|
| 37 |
[project.scripts]
|
| 38 |
-
|
| 39 |
-
# or: python -m my_env.server.app
|
| 40 |
-
server = "my_env.server.app:main"
|
| 41 |
|
| 42 |
[tool.setuptools]
|
| 43 |
include-package-data = true
|
| 44 |
-
packages = ["
|
| 45 |
-
|
|
|
|
|
|
|
|
|
| 5 |
# LICENSE file in the root directory of this source tree.
|
| 6 |
|
| 7 |
[build-system]
|
| 8 |
+
requires = ["setuptools>=61.0", "wheel"]
|
| 9 |
build-backend = "setuptools.build_meta"
|
| 10 |
|
| 11 |
[project]
|
| 12 |
+
name = "openenv-openops"
|
| 13 |
version = "0.1.0"
|
| 14 |
+
description = "OpenOps Production Incident Management Environment for OpenEnv"
|
| 15 |
+
authors = [{name = "arya89"}]
|
| 16 |
+
requires-python = ">=3.11"
|
| 17 |
dependencies = [
|
|
|
|
|
|
|
|
|
|
| 18 |
"openenv-core[core]>=0.2.2",
|
| 19 |
+
"fastapi>=0.115.0",
|
| 20 |
+
"uvicorn[standard]>=0.32.0",
|
| 21 |
+
"pydantic>=2.0.0",
|
| 22 |
+
"openai>=1.0.0",
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
]
|
| 24 |
|
| 25 |
[project.optional-dependencies]
|
|
|
|
| 29 |
]
|
| 30 |
|
| 31 |
[project.scripts]
|
| 32 |
+
server = "server.app:main"
|
|
|
|
|
|
|
| 33 |
|
| 34 |
[tool.setuptools]
|
| 35 |
include-package-data = true
|
| 36 |
+
packages = ["server", "models", "graders"]
|
| 37 |
+
|
| 38 |
+
[tool.uv]
|
| 39 |
+
dev-dependencies = []
|
uv.lock
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|