Spaces:
Sleeping
Sleeping
File size: 1,016 Bytes
922c4d1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | [build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "incident_ops_env"
version = "1.0.0"
description = "An OpenEnv environment for training AI agents on real-world SRE incident response tasks"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "CodeBlockers" }]
keywords = ["openenv", "rl", "incident-response", "sre", "agent", "reinforcement-learning"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"openenv-core>=0.1.0",
"fastapi>=0.110.0",
"uvicorn[standard]>=0.29.0",
"pydantic>=2.7.0",
"openai>=1.30.0",
]
[project.optional-dependencies]
dev = ["pytest>=8.0", "pytest-asyncio>=0.23", "httpx>=0.27"]
[tool.setuptools.packages.find]
include = ["server*", "models", "client"]
[tool.setuptools]
py-modules = []
[project.scripts]
server = "server.app:main"
|