Spaces:
Runtime error
Runtime error
File size: 1,255 Bytes
3ea4118 8c486a8 3ea4118 8c486a8 7529adc 3ea4118 8c486a8 3ea4118 aef9d26 8c486a8 fda4cbc fb68239 8c486a8 7529adc 3ea4118 7529adc 3ea4118 d42b272 3ea4118 8c486a8 fb68239 | 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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | [build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openenv-open-range"
version = "0.1.0"
description = "Multi-agent cybersecurity gymnasium built on OpenEnv"
requires-python = ">=3.11"
license = "Apache-2.0"
dependencies = [
"openenv-core[core]>=0.2.1",
"click>=8.1",
"fastapi>=0.115.0",
"pydantic>=2.0.0",
"pyyaml>=6.0",
"docker>=7.0",
"jinja2>=3.1",
"uvicorn>=0.24.0",
"gradio>=4.0.0",
]
[project.optional-dependencies]
dev = ["pytest>=8.0", "pytest-asyncio>=0.23", "httpx>=0.27"]
training = ["trl>=0.8", "unsloth"]
builder = ["litellm>=1.30"]
synthetic = ["litellm>=1.30"]
[project.scripts]
openrange = "open_range.cli:cli"
server = "open_range.server.app:main"
[tool.setuptools]
include-package-data = true
packages = [
"manifests",
"open_range",
"open_range.agents",
"open_range.builder",
"open_range.builder.npc",
"open_range.client",
"open_range.server",
"open_range.training",
"open_range.validator",
]
package-dir = { "" = "src" }
package-data = { "open_range" = ["**/*.yaml", "**/*.yml"] }
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"live_model: runs live LiteLLM model smoke tests",
]
|