|
3 | 3 | setup( |
4 | 4 | name="pytest-forked", |
5 | 5 | use_scm_version=True, |
6 | | - description='run tests in isolated forked subprocesses', |
7 | | - long_description=open('README.rst').read(), |
8 | | - long_description_content_type='text/x-rst', |
9 | | - license='MIT', |
10 | | - author='pytest-dev', |
11 | | - author_email='pytest-dev@python.org', |
12 | | - url='https://github.com/pytest-dev/pytest-forked', |
13 | | - platforms=['linux', 'osx'], |
14 | | - packages=['pytest_forked'], |
15 | | - package_dir={'': 'src'}, |
| 6 | + description="run tests in isolated forked subprocesses", |
| 7 | + long_description=open("README.rst").read(), |
| 8 | + long_description_content_type="text/x-rst", |
| 9 | + license="MIT", |
| 10 | + author="pytest-dev", |
| 11 | + author_email="pytest-dev@python.org", |
| 12 | + url="https://github.com/pytest-dev/pytest-forked", |
| 13 | + platforms=["linux", "osx"], |
| 14 | + packages=["pytest_forked"], |
| 15 | + package_dir={"": "src"}, |
16 | 16 | entry_points={ |
17 | | - 'pytest11': [ |
18 | | - 'pytest_forked = pytest_forked', |
| 17 | + "pytest11": [ |
| 18 | + "pytest_forked = pytest_forked", |
19 | 19 | ], |
20 | 20 | }, |
21 | 21 | zip_safe=False, |
22 | | - install_requires=['py', 'pytest>=3.10'], |
23 | | - setup_requires=['setuptools_scm'], |
24 | | - python_requires='>=3.6', |
| 22 | + install_requires=["py", "pytest>=3.10"], |
| 23 | + setup_requires=["setuptools_scm"], |
| 24 | + python_requires=">=3.6", |
25 | 25 | classifiers=[ |
26 | | - 'Development Status :: 7 - Inactive', |
27 | | - 'Framework :: Pytest', |
28 | | - 'Intended Audience :: Developers', |
29 | | - 'License :: OSI Approved :: MIT License', |
30 | | - 'Operating System :: POSIX', |
31 | | - 'Operating System :: MacOS :: MacOS X', |
32 | | - 'Topic :: Software Development :: Testing', |
33 | | - 'Topic :: Software Development :: Quality Assurance', |
34 | | - 'Topic :: Utilities', |
35 | | - 'Programming Language :: Python', |
36 | | - 'Programming Language :: Python :: 3', |
37 | | - 'Programming Language :: Python :: 3.6', |
38 | | - 'Programming Language :: Python :: 3.7', |
39 | | - 'Programming Language :: Python :: 3.8', |
40 | | - 'Programming Language :: Python :: 3.9', |
41 | | - 'Programming Language :: Python :: 3.10', |
42 | | - 'Programming Language :: Python :: 3 :: Only', |
| 26 | + "Development Status :: 7 - Inactive", |
| 27 | + "Framework :: Pytest", |
| 28 | + "Intended Audience :: Developers", |
| 29 | + "License :: OSI Approved :: MIT License", |
| 30 | + "Operating System :: POSIX", |
| 31 | + "Operating System :: MacOS :: MacOS X", |
| 32 | + "Topic :: Software Development :: Testing", |
| 33 | + "Topic :: Software Development :: Quality Assurance", |
| 34 | + "Topic :: Utilities", |
| 35 | + "Programming Language :: Python", |
| 36 | + "Programming Language :: Python :: 3", |
| 37 | + "Programming Language :: Python :: 3.6", |
| 38 | + "Programming Language :: Python :: 3.7", |
| 39 | + "Programming Language :: Python :: 3.8", |
| 40 | + "Programming Language :: Python :: 3.9", |
| 41 | + "Programming Language :: Python :: 3.10", |
| 42 | + "Programming Language :: Python :: 3 :: Only", |
43 | 43 | ], |
44 | 44 | ) |
0 commit comments