911 / pyproject.toml
garvitsachdeva's picture
Finalize OpenEnv baseline: OpenAI client, PORT binding, and docs
43f2683
raw
history blame contribute delete
925 Bytes
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "citywide-dispatch-supervisor"
version = "0.1.0"
description = "911 Dispatch RL Environment. City-wide emergency dispatch benchmark powered by LLM orchestration."
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.7",
"openenv>=0.2.0",
"openenv-core>=0.2.0",
"fastapi>=0.110",
"uvicorn[standard]>=0.29",
"openai>=1.12",
"httpx>=0.27",
"matplotlib>=3.7",
"groq>=1.1.2",
"pyyaml>=6.0.1",
]
[project.scripts]
server = "server.app:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
]