-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (40 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (40 loc) · 1.08 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
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[project]
name = "agpair"
version = "1.0.0"
description = "Native-feeling external-agent handoff for Codex and Claude Code — dispatch, wait, evidence, adoption, retry, and pluggable CLI executors"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
dependencies = [
"typer>=0.16,<1.0",
]
[project.optional-dependencies]
dev = [
"basedpyright>=1.39,<2.0",
"pytest>=8.4,<9.0",
"ruff>=0.15,<1.0",
]
[project.scripts]
agpair = "agpair.cli.app:main"
agent-bus = "agpair.cli.agent_bus:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.ruff]
target-version = "py312"
line-length = 120
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]
[tool.ruff.lint.per-file-ignores]
"scripts/*.py" = ["E402"]
"tests/unit/test_auto_advance.py" = ["E402"]
"tests/unit/test_gemini_executor.py" = ["E402"]
[tool.basedpyright]
pythonVersion = "3.12"
include = ["agpair", "scripts", "tests"]
typeCheckingMode = "basic"
[tool.hatch.build.targets.wheel]
packages = ["agpair"]