-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.45 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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "coverage_threshold"
version = "0.6.2"
authors = [{ name = "Dean Way", email = "deanwaydev@gmail.com" }]
description = "Tools for coverage threshold limits"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
dependencies = ["toml >= 0.10.2"]
[project.scripts]
coverage-threshold = "coverage_threshold.cli:main"
[project.urls]
Homepage = "https://github.com/DeanWay/coverage-threshold"
Issues = "https://github.com/DeanWay/coverage-threshold/issues"
[tool.isort]
profile = "black"
src_paths = ["src", "tests"]
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.coverage-threshold]
line_coverage_min = 0
file_line_coverage_min = 100
file_branch_coverage_min = 100
[tool.coverage-threshold.modules."src/coverage_threshold/cli/"]
file_line_coverage_min = 0
file_branch_coverage_min = 0
[tool.coverage-threshold.modules."src/coverage_threshold/__main__.py"]
file_line_coverage_min = 0
file_branch_coverage_min = 0