-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.16 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
[project]
name = "agentgit"
version = "0.1.0"
description = "Convert agent transcripts to git repositories"
readme = "README.md"
license = "MIT"
authors = [{ name = "Ben Tucker", email = "ben@btucker.net" }]
requires-python = ">=3.10"
dependencies = [
"pluggy>=1.3.0",
"gitpython>=3.1.0",
"click>=8.0.0",
"watchdog>=3.0.0",
"httpx>=0.25.0",
"rich>=12.4.0",
"pyyaml>=6.0",
]
[project.scripts]
agentgit = "agentgit.cli:main"
agit = "agentgit.cli:main"
agentgit-pager = "agentgit.pager:main"
alazygit = "agentgit.cli:run_lazygit_passthrough_cmd"
[project.optional-dependencies]
dev = ["pytest>=7.0", "pytest-cov>=4.0"]
llm = ["llm>=0.16", "llm-claude-cli>=0.1.0"]
[build-system]
requires = ["uv_build>=0.9.1,<0.10.0"]
build-backend = "uv_build"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = [
"--cov=agentgit",
"--cov-report=term-missing",
"--cov-report=html:htmlcov",
"--cov-fail-under=74",
]
[tool.coverage.run]
source = ["src/agentgit"]
branch = true
omit = ["*/tests/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"if __name__ == .__main__.:",
"raise NotImplementedError",
]
show_missing = true