soc-openenv / pyproject.toml
Battlecon's picture
again requirements change
3d81ff4
Raw
History Blame Contribute Delete
608 Bytes
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "soc-openenv"
version = "1.0.0"
description = "SOC Incident Response OpenEnv environment"
requires-python = ">=3.10"
dependencies = [
"openenv-core>=0.2.0",
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"pydantic>=2.7",
"openai>=2.7.2",
"httpx>=0.27",
]
[project.scripts]
server = "server.app:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["soc_env*", "scenarios*", "server*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]