-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
113 lines (101 loc) · 2.53 KB
/
Copy pathpyproject.toml
File metadata and controls
113 lines (101 loc) · 2.53 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[project]
name = "runbookproof"
version = "0.1.0"
description = "Continuously verify commands in documentation, runbooks, and AI-generated instructions."
readme = "README.md"
authors = [
{ name = "Antonis Loukis", email = "contact@antonisloukis.dev" },
]
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.11"
keywords = [
"ai",
"cli",
"documentation",
"devops",
"github-actions",
"runbooks",
"sre",
"static-analysis",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Documentation",
"Topic :: Software Development :: Quality Assurance",
"Topic :: System :: Systems Administration",
"Typing :: Typed",
]
dependencies = []
[project.scripts]
runbookproof = "runbookproof.cli:main"
[project.urls]
Homepage = "https://github.com/antonisloukis/runbookproof"
Repository = "https://github.com/antonisloukis/runbookproof"
Issues = "https://github.com/antonisloukis/runbookproof/issues"
Changelog = "https://github.com/antonisloukis/runbookproof/blob/main/CHANGELOG.md"
Documentation = "https://github.com/antonisloukis/runbookproof/tree/main/docs"
[build-system]
requires = ["uv_build>=0.11.32,<0.12.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "runbookproof"
module-root = "src"
[dependency-groups]
dev = [
"mypy>=2.3.0",
"pytest>=9.1.1",
"pytest-cov>=7.1.0",
"ruff>=0.16.1",
]
[tool.pytest.ini_options]
addopts = [
"--strict-config",
"--strict-markers",
"--cov=runbookproof",
"--cov-report=term-missing",
]
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["runbookproof"]
omit = ["src/runbookproof/__main__.py"]
[tool.coverage.report]
show_missing = true
skip_covered = true
fail_under = 90
[tool.ruff]
target-version = "py311"
line-length = 88
src = ["src", "tests"]
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"UP",
"B",
"SIM",
"RUF",
]
ignore = []
[tool.ruff.format]
docstring-code-format = true
quote-style = "double"
indent-style = "space"
[tool.mypy]
python_version = "3.11"
strict = true
files = ["src", "tests"]
warn_unreachable = true
pretty = true