Spaces:
Sleeping
Sleeping
File size: 768 Bytes
e202b3a 1f58fe4 e202b3a 1f58fe4 e202b3a 1f58fe4 e202b3a | 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 | [build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sre-incident-env"
version = "1.0.0"
description = "SRE Incident Response OpenEnv Environment"
authors = [
{name = "Your Name", email = "your.email@example.com"},
]
dependencies = [
"fastapi==0.115.5",
"uvicorn[standard]==0.32.1",
"pydantic==2.10.3",
"httpx==0.28.1",
"python-multipart==0.0.19",
"pyyaml==6.0.2",
"openenv-core>=0.2.0",
]
requires-python = ">=3.11"
readme = "README.md"
[project.scripts]
baseline = "baseline:main"
inference = "inference:main"
server = "server.app:main"
[tool.setuptools]
packages = ["app", "server"]
[tool.setuptools.package-dir]
"" = "."
[tool.setuptools.package-data]
app = ["tasks/*.py"] |