Spaces:
Sleeping
Sleeping
File size: 515 Bytes
f35973d 14d067c 7867bc6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | [build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "openenv-cloudsoc"
version = "1.0.0"
description = "A benchmark environment for evaluating LLM agents on cloud security incident response."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"gymnasium>=0.29.0",
"pydantic>=2.0.0",
"openai>=1.0.0",
"PyYAML>=6.0",
"openenv-core>=0.2.0"
]
[project.scripts]
server = "server.app:main"
[tool.setuptools]
py-modules = ["graders"] |