CausalOps-Env / pyproject.toml
omm7's picture
Upload folder using huggingface_hub
5c3e08d verified
raw
history blame contribute delete
643 Bytes
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openenv-novatech-incident-command"
version = "0.1.0"
description = "NovaTech Incident Command environment for OpenEnv"
requires-python = ">=3.10"
dependencies = [
"openenv-core[core]>=0.2.2",
"fastapi==0.115.12",
"uvicorn[standard]==0.35.0",
"pydantic==2.12.5",
"requests==2.32.3",
"pyyaml==6.0.2",
"openai==2.9.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
]
[project.scripts]
server = "app:main"
[tool.setuptools]
include-package-data = true
py-modules = ["app", "inference"]