File size: 925 Bytes
4904e85
 
 
 
 
885a0b4
4904e85
 
 
 
 
43f2683
4904e85
 
 
 
 
 
 
14170d7
4904e85
 
5b25e42
 
 
4904e85
 
 
 
 
 
 
 
 
 
14170d7
4904e85
 
 
 
 
 
 
 
 
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[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",
]