-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
64 lines (56 loc) · 1.38 KB
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
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openenv-cyber-range"
version = "0.1.0"
description = "CyberRange: An OpenEnv environment that trains AI agents to be SOC analysts — detecting, investigating, and responding to cyber threats on a simulated enterprise network."
requires-python = ">=3.10"
license = {text = "BSD-3-Clause"}
authors = [{name = "CyberRange Team"}]
keywords = ["openenv", "cybersecurity", "soc", "reinforcement-learning", "agent"]
dependencies = [
# Core OpenEnv dependencies
"openenv-core[core]>=0.2.2",
"fastapi>=0.115.0",
"pydantic>=2.0.0",
"uvicorn>=0.24.0",
"requests>=2.31.0",
"fastmcp>=2.0.0",
"matplotlib>=3.10.8",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.4.0",
]
inference = [
"openai>=1.0.0",
"rich>=13.0.0",
]
demo = [
"gradio>=4.0.0",
]
training = [
"rich>=13.0.0",
"gymnasium>=0.29.1",
"trl>=0.15.0",
]
[project.scripts]
server = "cyber_range.server.app:main"
[tool.setuptools]
include-package-data = true
packages = ["cyber_range", "cyber_range.server"]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[dependency-groups]
dev = [
"pytest>=9.0.2",
]