-
Notifications
You must be signed in to change notification settings - Fork 236
/
pyproject.toml
113 lines (104 loc) · 2.77 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
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
[build-system]
build-backend = "hatchling.build"
requires = [
"hatch-vcs>=0.3",
"hatchling>=1.13",
]
[project]
name = "pytest-html"
description = "pytest plugin for generating HTML reports"
readme = "README.rst"
keywords = [
"html",
"pytest",
"report",
]
license = "MPL-2.0"
authors = [
{ name = "Dave Hunt", email = "[email protected]" },
{ name = "Jim Brannlund", email = "[email protected]" },
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
]
dynamic = [
"version",
]
dependencies = [
"jinja2>=3",
"pytest>=7",
"pytest-metadata>=2",
]
optional-dependencies.docs = [
"pip-tools>=6.13",
]
optional-dependencies.test = [
"assertpy>=1.1",
"beautifulsoup4>=4.11.1",
"black>=22.1",
"flake8>=4.0.1",
"pre-commit>=2.17",
"pytest-mock>=3.7",
"pytest-rerunfailures>=11.1.2",
"pytest-xdist>=2.4",
"selenium>=4.3",
"tox>=3.24.5",
]
urls.Homepage = "https://github.com/pytest-dev/pytest-html"
urls.Source = "https://github.com/pytest-dev/pytest-html"
urls.Tracker = "https://github.com/pytest-dev/pytest-html/issues"
entry-points.pytest11.html = "pytest_html.plugin"
entry-points.pytest11.html_fixtures = "pytest_html.fixtures"
[tool.hatch.envs.test]
features = [
"test",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
exclude = [
"src/pytest_html/scripts/*",
]
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
]
[tool.hatch.build.hooks.vcs]
version-file = "src/pytest_html/__version.py"
[tool.hatch.build.hooks.custom]
path = "scripts/npm.py"
[tool.mypy]
check_untyped_defs = false # TODO
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = false # TODO
ignore_missing_imports = true
no_implicit_optional = true
no_implicit_reexport = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true