Skip to content

Commit a2ee38b

Browse files
committed
readme only + fix + format
1 parent 3db00c4 commit a2ee38b

File tree

1 file changed

+34
-39
lines changed

1 file changed

+34
-39
lines changed

pyproject.toml

Lines changed: 34 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,52 @@
11
[build-system]
2+
build-backend = "setuptools.build_meta"
23
requires = [
3-
"setuptools >= 40.0",
4-
"wheel" # You can include wheel here if you're building wheels
4+
"setuptools>=40",
5+
"wheel", # You can include wheel here if you're building wheels
56
]
6-
build-backend = "setuptools.build_meta"
7-
87

98
[tool.check-manifest]
109
ignore = [".pre-commit-config.yaml"]
1110

12-
1311
[project]
1412
name = "pytest-rerunfailures"
1513
version = "13.1.dev0"
1614
description = "pytest plugin to re-run tests to eliminate flaky failures"
17-
authors = [{name = "Leah Klearman", email = "lklrmn@gmail.com"}]
18-
readme = ["HEADER.rst", "README.rst", "CHANGES.rst"]
19-
keywords = ["py.test", "pytest", "rerun", "failures", "flaky"]
15+
readme = "README.rst"
16+
keywords = [
17+
"failures",
18+
"flaky",
19+
"py.test",
20+
"pytest",
21+
"rerun",
22+
]
2023
license = {text = "Mozilla Public License 2.0 (MPL 2.0)"}
24+
authors = [{name = "Leah Klearman", email = "lklrmn@gmail.com"}]
2125
requires-python = ">=3.8"
2226
classifiers = [
23-
"Development Status :: 5 - Production/Stable",
24-
"Framework :: Pytest",
25-
"Intended Audience :: Developers",
26-
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
27-
"Operating System :: POSIX",
28-
"Operating System :: Microsoft :: Windows",
29-
"Operating System :: MacOS :: MacOS X",
30-
"Topic :: Software Development :: Quality Assurance",
31-
"Topic :: Software Development :: Testing",
32-
"Topic :: Utilities",
33-
"Programming Language :: Python :: 3",
34-
"Programming Language :: Python :: 3.7",
35-
"Programming Language :: Python :: 3.8",
36-
"Programming Language :: Python :: 3.9",
37-
"Programming Language :: Python :: 3.10",
38-
"Programming Language :: Python :: 3.11",
39-
"Programming Language :: Python :: 3.12",
40-
"Programming Language :: Python :: 3 :: Only",
41-
"Programming Language :: Python :: Implementation :: CPython",
42-
"Programming Language :: Python :: Implementation :: PyPy",
27+
"Development Status :: 5 - Production/Stable",
28+
"Framework :: Pytest",
29+
"Intended Audience :: Developers",
30+
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
31+
"Operating System :: MacOS :: MacOS X",
32+
"Operating System :: Microsoft :: Windows",
33+
"Operating System :: POSIX",
34+
"Programming Language :: Python :: 3 :: Only",
35+
"Programming Language :: Python :: 3.8",
36+
"Programming Language :: Python :: 3.9",
37+
"Programming Language :: Python :: 3.10",
38+
"Programming Language :: Python :: 3.11",
39+
"Programming Language :: Python :: 3.12",
40+
"Programming Language :: Python :: Implementation :: CPython",
41+
"Programming Language :: Python :: Implementation :: PyPy",
42+
"Topic :: Software Development :: Quality Assurance",
43+
"Topic :: Software Development :: Testing",
44+
"Topic :: Utilities",
45+
]
46+
dependencies = [
47+
"packaging>=17.1",
48+
"pytest>=7",
4349
]
4450
urls = {Homepage = "https://github.com/pytest-dev/pytest-rerunfailures"}
45-
46-
[project.optional-dependencies]
47-
py37 = ["importlib-metadata>=1"]
48-
4951
[project.scripts]
5052
pytest-rerunfailures = "pytest_rerunfailures:main"
51-
52-
[project.dependencies]
53-
requires-python = ">=3.7"
54-
dependencies = [
55-
"packaging >= 17.1",
56-
"pytest >= 7",
57-
]

0 commit comments

Comments
 (0)