|
1 | 1 | [build-system] |
| 2 | +build-backend = "setuptools.build_meta" |
2 | 3 | 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 |
5 | 6 | ] |
6 | | -build-backend = "setuptools.build_meta" |
7 | | - |
8 | 7 |
|
9 | 8 | [tool.check-manifest] |
10 | 9 | ignore = [".pre-commit-config.yaml"] |
11 | 10 |
|
12 | | - |
13 | 11 | [project] |
14 | 12 | name = "pytest-rerunfailures" |
15 | 13 | version = "13.1.dev0" |
16 | 14 | 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 | +] |
20 | 23 | license = {text = "Mozilla Public License 2.0 (MPL 2.0)"} |
| 24 | +authors = [{name = "Leah Klearman", email = "lklrmn@gmail.com"}] |
21 | 25 | requires-python = ">=3.8" |
22 | 26 | 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", |
43 | 49 | ] |
44 | 50 | urls = {Homepage = "https://github.com/pytest-dev/pytest-rerunfailures"} |
45 | | - |
46 | | -[project.optional-dependencies] |
47 | | -py37 = ["importlib-metadata>=1"] |
48 | | - |
49 | 51 | [project.scripts] |
50 | 52 | 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