NetZero-Nav / pyproject.toml
Aryanshh
feat: Full OpenEnv spec compliance — /metadata, /schema, /health, /mcp endpoints + pyproject.toml fix + deterministic 0-1 graders + proper inference.py STDOUT
a95dc70
raw
history blame contribute delete
550 Bytes
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "netzero-nav"
version = "1.0.0"
description = "Autonomous RL logistics agent navigating global disruptions with a Net-Zero mandate."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi",
"uvicorn[standard]",
"pydantic>=2.0",
"openai",
"pyyaml",
"httpx",
"openenv-core>=0.2.0"
]
[project.scripts]
server = "server.app:main"
[tool.setuptools.packages.find]
include = ["netzero_nav*", "server*"]