-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (51 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (51 loc) · 1.61 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
[project]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [ "pyyaml>=6.0" ]
description = "Track the promises a codebase makes and back them with runnable evidence."
license = "Elastic-2.0"
name = "pinkyswear"
readme = "README.md"
requires-python = ">=3.11"
version = "0.1.1"
[[project.authors]]
email = "2493311+mvanwyk@users.noreply.github.com"
name = "Murray Vanwyk"
[project.scripts]
promise = "pinkyswear.cli:main"
[dependency-groups]
dev = [ "pre-commit>=3.6.2,<4", "pytest>=8.0", "pytest-cov>=5.0", "ruff>=0.6", "tomlkit>=0.12,<1", "tox>=4.0.0,<5" ]
[build-system]
build-backend = "hatchling.build"
requires = [ "hatchling" ]
[tool.hatch.build.targets.wheel]
packages = [ "pinkyswear" ]
[tool.pytest.ini_options]
addopts = "--cov=pinkyswear --cov-report=term-missing --cov-branch --import-mode=importlib"
pythonpath = [ "." ]
testpaths = [ "tests" ]
[tool.coverage.run]
branch = true
source = [ "pinkyswear" ]
[tool.coverage.report]
exclude_lines = [ "if TYPE_CHECKING:" ]
show_missing = true
skip_covered = true
[tool.ruff]
line-length = 120
src = [ "pinkyswear", "tests" ]
target-version = "py311"
[tool.ruff.lint]
ignore = [ "D203", "D213" ]
select = [ "E", "F", "I", "N", "UP", "B", "W", "D" ]
[tool.ruff.lint.isort]
known-first-party = [ "pinkyswear" ]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"tests/*" = [ "D100", "D101", "D102", "D103", "D104" ]