|
| 1 | +#!/usr/bin/env python |
1 | 2 | from setuptools import setup |
2 | 3 |
|
3 | | -with open("README.rst") as readme, open("CHANGES.rst") as changelog: |
4 | | - long_description = ".. contents::\n\n" + readme.read() + "\n\n" + changelog.read() |
5 | | - |
6 | | -setup( |
7 | | - name="pytest-rerunfailures", |
8 | | - version="10.2.dev0", |
9 | | - description="pytest plugin to re-run tests to eliminate flaky failures", |
10 | | - long_description=long_description, |
11 | | - author="Leah Klearman", |
12 | | - author_email="lklrmn@gmail.com", |
13 | | - url="https://github.com/pytest-dev/pytest-rerunfailures", |
14 | | - py_modules=["pytest_rerunfailures"], |
15 | | - entry_points={"pytest11": ["rerunfailures = pytest_rerunfailures"]}, |
16 | | - install_requires=[ |
17 | | - "setuptools>=40.0", |
18 | | - "pytest >= 5.3", |
19 | | - ], |
20 | | - python_requires=">=3.6", |
21 | | - license="Mozilla Public License 2.0 (MPL 2.0)", |
22 | | - keywords="py.test pytest rerun failures flaky", |
23 | | - zip_safe=False, |
24 | | - classifiers=[ |
25 | | - "Development Status :: 5 - Production/Stable", |
26 | | - "Framework :: Pytest", |
27 | | - "Intended Audience :: Developers", |
28 | | - "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", |
29 | | - "Operating System :: POSIX", |
30 | | - "Operating System :: Microsoft :: Windows", |
31 | | - "Operating System :: MacOS :: MacOS X", |
32 | | - "Topic :: Software Development :: Quality Assurance", |
33 | | - "Topic :: Software Development :: Testing", |
34 | | - "Topic :: Utilities", |
35 | | - "Programming Language :: Python :: 3", |
36 | | - "Programming Language :: Python :: 3.6", |
37 | | - "Programming Language :: Python :: 3.7", |
38 | | - "Programming Language :: Python :: 3.8", |
39 | | - "Programming Language :: Python :: 3.9", |
40 | | - "Programming Language :: Python :: 3 :: Only", |
41 | | - "Programming Language :: Python :: Implementation :: CPython", |
42 | | - "Programming Language :: Python :: Implementation :: PyPy", |
43 | | - ], |
44 | | -) |
| 4 | +setup() |
0 commit comments