This repository was archived by the owner on Jan 19, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (62 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
75 lines (62 loc) · 1.45 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
[project]
name = "cc-plan-export"
version = "0.2.0"
description = "Scripts to export Claude Code project plans"
readme = "README.md"
requires-python = ">=3.9"
dependencies = []
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["scripts"]
[tool.ruff]
target-version = "py39"
line-length = 88
indent-width = 4
[tool.ruff.lint]
# E: pycodestyle errors
# F: Pyflakes
# I: isort (import sorting)
# B: flake8-bugbear (common logical bugs)
# UP: pyupgrade (upgrade syntax to newer python versions)
select = ["E", "F", "I", "B", "UP"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "-v"
[dependency-groups]
dev = [
"pytest>=8.0",
"ruff>=0.9",
"pre-commit>=4.0.0",
"mypy>=1.13",
"vulture>=2.14",
"commitizen>=4.10.1",
]
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false
[tool.vulture]
min_confidence = 80
paths = ["."]
exclude = [".venv", "venv"]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
annotated_tag = true
version_scheme = "pep440"
version_provider = "pep621"
update_changelog_on_bump = true
major_version_zero = true
version_files = [
"pyproject.toml:version",
".claude-plugin/plugin.json:version",
"README.md:version-__version__-blue"
]