updated-policy / pyproject.toml
Yaswanth-Bolla's picture
add uv.lock
bbbb404
raw
history blame contribute delete
727 Bytes
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.backends._legacy:_Backend"
[project]
name = "incident_env"
version = "0.1.0"
description = "SRE Incident Response Simulator — an OpenEnv environment for training and evaluating AI agents on production incident diagnosis and remediation."
requires-python = ">=3.10"
dependencies = [
"openenv-core>=0.1.0",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.0.0",
"websockets>=12.0",
"openai>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"httpx>=0.25.0",
]
[tool.setuptools.packages.find]
include = ["incident_env*"]
[project.scripts]
server = "incident_env.server.app:main"