-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (77 loc) · 2.12 KB
/
Copy pathpyproject.toml
File metadata and controls
90 lines (77 loc) · 2.12 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zero-develop"
dynamic = ["version"]
description = "Zero Develop — multi-agent control plane for concurrent software development"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [{ name = "Zero Develop" }]
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.32",
"pydantic>=2.9",
"pydantic-settings>=2.6",
"httpx[socks]>=0.27",
"jinja2>=3.1",
"jsonschema>=4.20",
"python-multipart>=0.0.9",
"cryptography>=42.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
tui = [
"textual>=0.70",
]
tokenizer = [
"tiktoken>=0.8",
]
pg = [
"psycopg[binary,pool]>=3.2",
]
mcp = [
"mcp>=1.0",
]
session = [
"telethon>=1.34",
]
dev = [
"pytest>=8.3",
"pytest-asyncio>=0.24",
# starlette >=1.0 TestClient prefers httpx2 and only warns when it
# falls back to httpx; the repo's fail-closed warnings policy turns
# that warning into a collection error unless httpx2 is installed.
"httpx2>=2.0.0",
"ruff>=0.7",
]
[project.scripts]
zero-develop = "zero.cli:main"
zero = "zero.manage.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
# The package version is derived from ``zero.__version__`` so the wheel,
# ``/healthz``, and ``--version`` can never disagree (they did: the
# package said 0.1.0 while the tree was v0.8.5).
[tool.setuptools.dynamic]
version = { attr = "zero.__version__" }
[tool.setuptools.package-data]
"zero.web" = ["templates/*.html", "static/*"]
"zero.persistence" = ["migrations/*.sql", "migrations_pg/*.sql"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra -q"
asyncio_mode = "auto"
markers = [
"pg_integration: requires a disposable PostgreSQL instance (ZERO_TEST_PG_URL)",
"live_telegram: requires LIVE_TELEGRAM_* credentials + ZERO_ENABLE_LIVE_TESTS=1",
"live_provider: requires LIVE_OPENAI_API_KEY/LIVE_ANTHROPIC_API_KEY + ZERO_ENABLE_LIVE_TESTS=1",
]
filterwarnings = [
"error",
"ignore::DeprecationWarning:pydantic.*",
]
[tool.ruff]
line-length = 100
target-version = "py311"