Sentinel / pyproject.toml
nihalaninihal's picture
Remove hackathon_env template, rewrite train.py for SentinelOpsArena
0e5a0a6
raw
history blame
617 Bytes
[project]
name = "sentinelops-arena"
version = "0.1.0"
description = "Multi-agent self-play RL environment for enterprise security training"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"openenv-core[core]>=0.2.0",
"mcp>=1.26.0",
"fastmcp>=2.14.5",
"fastapi>=0.115.0",
"uvicorn>=0.24.0",
"gradio>=5.0.0",
"pydantic>=2.0",
"httpx>=0.27",
]
[project.optional-dependencies]
train = [
"trl>=0.15",
"transformers>=4.40",
"torch>=2.0",
"datasets>=2.0",
"accelerate>=0.30",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"