-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (77 loc) · 2.46 KB
/
Copy pathpyproject.toml
File metadata and controls
87 lines (77 loc) · 2.46 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
[build-system]
requires = ["hatchling==1.31.0"]
build-backend = "hatchling.build"
[project]
name = "agent-switchboard"
version = "0.4.0"
description = "Explicit thread and workstream lifecycle management for coding agents"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.12"
dependencies = [
"websockets>=14,<17",
]
[project.scripts]
swbctl = "agent_switchboard.cli:main"
[tool.hatch.build]
reproducible = true
skip-excluded-dirs = true
[tool.hatch.build.targets.wheel]
packages = ["src/agent_switchboard/_v4"]
[tool.hatch.build.targets.wheel.sources]
"src/agent_switchboard/_v4" = "agent_switchboard"
[tool.hatch.build.targets.sdist]
only-include = [
"src/agent_switchboard/_v4",
"docs/design.md",
"docs/state-contract.md",
"docs/view-workflow.md",
"docs/operations.md",
"docs/phase-6-plan.md",
"docs/cutover-bundle-v1.md",
"docs/phase-6c-acceptance.md",
"docs/phase-6d-acceptance.md",
"docs/phase-6e1-acceptance.md",
"docs/phase-6f-acceptance.md",
"docs/phase-6f1-acceptance.md",
"docs/phase-6f2-acceptance.md",
"docs/thread-workstream-redesign-proposal.md",
"docs/thread-workstream-redesign-decision.md",
"docs/thread-workstream-redesign-review.md",
"docs/thread-workstream-redesign-roadmap.md",
"docs/terminal-product-landscape.md",
"docs/herdr-assessment.md",
"docs/phase-7a-contract.md",
"docs/phase-7a-contract-matrices.json",
"docs/phase-7b-acceptance.md",
"docs/phase-7c-acceptance.md",
"docs/phase-7d-acceptance.md",
"docs/phase-7e-acceptance.md",
"docs/phase-7f-acceptance.md",
"docs/phase-7g-acceptance.md",
"docs/phase-7h-acceptance.md",
"docs/python-reference-checkpoint.md",
"docs/usage-tracking-discovery.md",
"requirements-offline.txt",
"scripts/build_offline_bundle.py",
"scripts/phase7f_live_acceptance.py",
"scripts/phase7g_live_acceptance.py",
"scripts/phase7h_live_acceptance.py",
]
[tool.pytest.ini_options]
addopts = "-ra"
pythonpath = ["src", "."]
testpaths = ["tests"]
python_files = ["test_v3_*.py", "test_v4_*.py"]
[tool.ruff]
target-version = "py312"
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "RUF"]
[tool.ruff.lint.per-file-ignores]
# Phase 0 probes are retained evidence; do not churn them as package style evolves.
"spikes/*.py" = ["E501", "I001"]
# SQL constraints are kept as readable source-aligned migration literals.
"src/agent_switchboard/_v3/migrations/*.py" = ["E501"]
"src/agent_switchboard/_v4/migrations/*.py" = ["E501"]