-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 978 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (37 loc) · 978 Bytes
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
[project]
name = "aftershock"
version = "0.1.0"
description = "A disaster-struck town run by a society of Qwen agents that split tasks, negotiate scarce rescue resources, and measurably beat a single big model on lives saved per dollar."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [{ name = "Kenny Ademolu" }]
dependencies = [
"fastapi>=0.136.3",
"httpx>=0.28.1",
"mcp>=1.27.2",
"pydantic>=2.7",
"pyyaml>=6.0",
"uvicorn[standard]>=0.49.0",
]
[project.scripts]
aftershock = "aftershock.cli:main"
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"ruff>=0.6",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/aftershock"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "DTZ"]