OpenSecOpsEnv2 / pyproject.toml
CracklesCreeper's picture
Final: openenv validate pass, 4 tasks, checklist compliant inference.py
27410ce
Raw
History Blame Contribute Delete
1.22 kB
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "opensecops-env"
version = "0.2.0"
description = "OpenSecOpsEnv – SecOps incident response environment for RL/agent evaluation"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "OpenSecOps Contributors" }]
keywords = ["reinforcement-learning", "openenv", "secops", "incident-response", "agent"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"fastapi>=0.111.0",
"uvicorn[standard]>=0.29.0",
"pydantic>=2.0.0",
"requests>=2.31.0",
"openai>=1.20.0",
"openenv-core>=0.2.0",
]
[project.optional-dependencies]
dev = ["pytest>=7.0", "httpx>=0.27.0", "pytest-asyncio>=0.23.0"]
[project.scripts]
opensecops-serve = "server.app:main"
server = "server.app:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["opensecops_env*", "server*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"