forked from redhat-developer/rhdh-skill
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (30 loc) · 770 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (30 loc) · 770 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 = "rhdh-skill"
version = "0.4.0"
description = "Claude Code skill for RHDH plugin development"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.9"
# No runtime dependencies - stdlib only!
[tool.setuptools.packages.find]
where = ["skills/rhdh"]
include = ["rhdh*"]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pyyaml>=6.0", # Only for SKILL.md structure tests
"ruff>=0.4.0",
]
[project.scripts]
rhdh = "rhdh.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E501"] # Line length handled by formatter