Spaces:
Sleeping
Sleeping
File size: 550 Bytes
60ea8be ecad261 60ea8be f7bf8d9 60ea8be b4bddc9 60ea8be a95dc70 60ea8be b4bddc9 3838f1a b4bddc9 60ea8be 0dd5d30 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | [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*"]
|