File size: 935 Bytes
bb6a031 cea0ed8 bb6a031 ecfe060 bb6a031 | 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 | [project]
name = "opensoc"
version = "1.0.0"
description = "Self-play SOC triage OpenEnv environment for training cybersecurity defender LLMs."
requires-python = ">=3.10"
authors = [{ name = "OpenSOC team" }]
license = { text = "BSD-3-Clause" }
readme = "README.md"
dependencies = [
"fastapi==0.115.5",
"uvicorn[standard]==0.32.1",
"pydantic==2.10.3",
"requests==2.32.3",
"httpx>=0.28.1,<0.29",
"openenv-core>=0.2.0",
"pyyaml==6.0.2",
"gradio>=5.0,<6",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.6",
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["env", "app_runtime", "server", "schema", "generator", "verifier", "rubric", "demo_app", "demo_data"]
[tool.setuptools.packages.find]
include = ["tasks*", "client*", "train*", "eval*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
|