-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (50 loc) · 1.07 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (50 loc) · 1.07 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src", "cli", "adapters"]
[tool.uv]
package = true
[project]
name = "qms-kit"
version = "0.1.0"
description = "Reusable ISO 9001 QMS deployment kit"
requires-python = ">=3.12"
dependencies = [
"jinja2>=3.1",
"pydantic>=2.0",
"pyyaml>=6.0",
"requests>=2.31",
"click>=8.1",
"markdown>=3.10.2",
]
[project.optional-dependencies]
dev = [
"pytest>=9.1",
"pytest-cov>=5.0",
"mypy>=1.10",
"bandit>=1.8",
"ruff>=0.11",
"hatchling>=1.25",
"types-pyyaml>=6.0",
"types-requests>=2.31",
"types-markdown>=3.10.2.20260518",
]
[project.scripts]
qms-kit = "cli.main:cli"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.ruff.format]
quote-style = "double"
[tool.mypy]
python_version = "3.12"
strict = false
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v"
[tool.bandit]
exclude_dirs = ["tests", ".venv"]