forked from ldayton/Dippy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (67 loc) · 2 KB
/
pyproject.toml
File metadata and controls
77 lines (67 loc) · 2 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
[project]
name = "dippy"
version = "0.2.6"
description = "Approval autopilot for Claude Code — stay in the flow by automatically allowing safe commands"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
authors = [
{ name = "Lily Dayton", email = "lily.dayton.git@gmail.com" }
]
keywords = ["claude", "claude-code", "hook", "bash", "permissions", "cli"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Build Tools",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/ldayton/Dippy"
Repository = "https://github.com/ldayton/Dippy"
Issues = "https://github.com/ldayton/Dippy/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
]
[project.scripts]
dippy = "dippy.dippy:main"
dippy-statusline = "dippy.dippy_statusline:main"
[build-system]
requires = ["uv_build>=0.7.19"]
build-backend = "uv_build"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short -n auto"
[tool.coverage.run]
source = ["src/dippy"]
branch = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
"raise NotImplementedError",
]
[tool.dippy.vendor]
parable-commit = "9f7e15734bd3e5bb9fe252d2491d6f61572f0e57"
parable-sha256 = "34aef27c989befa67daf5b0036ff90432baac350c3d79f7add711d883bca05d1"
[tool.ruff]
exclude = ["src/dippy/vendor"]
[dependency-groups]
dev = [
"pytest>=7.0",
"pytest-xdist>=3.0",
"ruff>=0.8.0",
]