-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
79 lines (69 loc) · 1.88 KB
/
pyproject.toml
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
[build-system]
requires = [
"setuptools >= 61.0",
"setuptools_scm[toml] >= 7.0.0",
]
build-backend = "setuptools.build_meta"
[project]
# https://peps.python.org/pep-0621/#readme
requires-python = ">=3.8"
dynamic = ["version"]
name = "tox-extra"
description = "Performs extra checks before or after running"
readme = "README.md"
authors = [
{"name"="Sorin Sbarnea", "email"="[email protected]"}
]
maintainers = [
{"name"="Sorin Sbarnea", "email"="[email protected]"}
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Framework :: tox",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Topic :: Software Development :: Testing",
]
keywords = ["git", "tox", "tox-plugin"]
dependencies = [
"bindep>2.8.1",
"gitpython",
"packaging",
"tox",
]
[project.urls]
homepage = "https://github.com/tox-dev/tox-extra"
issues = "https://github.com/tox-dev/tox-extra/issues"
repository = "https://github.com/tox-dev/tox-extra"
changelog = "https://github.com/tox-dev/tox-extra/releases"
[project.optional-dependencies]
test = [
"coverage[toml]>=6.5.0",
"pytest-mock>=3.10.0",
"pytest>=7.2.0",
"testfixtures>=7.0.3",
]
[project.entry-points.tox]
extra = "tox_extra.hooks"
[tool.coverage.run]
parallel = true
[tool.coverage.report]
omit = [".tox/*/lib/python*/site-packages/*"]
include = ["src/*"]
fail_under = 100.0
skip_covered = true
show_missing = true
[tool.coverage.paths]
source = ["src"]
[tool.isort]
profile = "black"
[tool.setuptools_scm]
local_scheme = "no-local-version"