TrashCollector / pyproject.toml
Mihir Mithani
Sync Hub-enabled code to Space (no weights)
a8d4cdf
raw
history blame contribute delete
571 Bytes
[project]
name = "incident-response-triage"
version = "1.0.0"
description = "OpenEnv environment simulating production incident response and triage for SRE agents"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.110.0",
"uvicorn>=0.29.0",
"pydantic>=2.0.0",
"openai>=1.0.0",
"requests>=2.31.0",
"python-dotenv>=1.0.0",
"pyyaml>=6.0.0",
"openenv-core>=0.2.0",
]
[project.scripts]
server = "server.app:main"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.backends._legacy:_Backend"