-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 812 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (31 loc) · 812 Bytes
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
[project]
name = "claude-code-config"
version = "5.4.2"
requires-python = ">=3.12"
dependencies = [
"mergedeep",
"python-frontmatter",
"pyyaml",
]
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "pytest-xdist"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
source = ["scripts"]
branch = true
omit = ["scripts/git-hooks/*", "scripts/release/*"]
[tool.coverage.report]
show_missing = true
skip_covered = false
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
"raise NotImplementedError",
]
[tool.ruff]
# Keep below py314. Ruff py314 applies PEP 758 and removes parentheses
# from multi-type except clauses; repo policy requires except (A, B):.
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B"]