|
1 | 1 | from setuptools import setup
|
2 | 2 |
|
3 |
| -setup(name='pytest-base-url', |
4 |
| - use_scm_version=True, |
5 |
| - description='pytest plugin for URL based testing', |
6 |
| - long_description=open('README.rst').read(), |
7 |
| - author='Dave Hunt', |
8 |
| - |
9 |
| - url='https://github.com/pytest-dev/pytest-base-url', |
10 |
| - packages=['pytest_base_url'], |
11 |
| - install_requires=[ |
12 |
| - 'pytest>=2.7.3', |
13 |
| - 'requests>=2.9'], |
14 |
| - setup_requires=['setuptools_scm'], |
15 |
| - entry_points={'pytest11': ['base_url = pytest_base_url.plugin']}, |
16 |
| - license='Mozilla Public License 2.0 (MPL 2.0)', |
17 |
| - keywords='py.test pytest base url mozilla automation', |
18 |
| - classifiers=[ |
19 |
| - 'Development Status :: 5 - Production/Stable', |
20 |
| - 'Framework :: Pytest', |
21 |
| - 'Intended Audience :: Developers', |
22 |
| - 'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)', |
23 |
| - 'Operating System :: POSIX', |
24 |
| - 'Operating System :: Microsoft :: Windows', |
25 |
| - 'Operating System :: MacOS :: MacOS X', |
26 |
| - 'Topic :: Software Development :: Quality Assurance', |
27 |
| - 'Topic :: Software Development :: Testing', |
28 |
| - 'Topic :: Utilities', |
29 |
| - 'Programming Language :: Python', |
30 |
| - 'Programming Language :: Python :: 2.7', |
31 |
| - 'Programming Language :: Python :: 3.6', |
32 |
| - 'Programming Language :: Python :: Implementation :: CPython', |
33 |
| - 'Programming Language :: Python :: Implementation :: PyPy']) |
| 3 | +setup( |
| 4 | + name="pytest-base-url", |
| 5 | + use_scm_version=True, |
| 6 | + description="pytest plugin for URL based testing", |
| 7 | + long_description=open("README.rst").read(), |
| 8 | + author="Dave Hunt", |
| 9 | + |
| 10 | + url="https://github.com/pytest-dev/pytest-base-url", |
| 11 | + packages=["pytest_base_url"], |
| 12 | + install_requires=["pytest>=2.7.3", "requests>=2.9"], |
| 13 | + setup_requires=["setuptools_scm"], |
| 14 | + entry_points={"pytest11": ["base_url = pytest_base_url.plugin"]}, |
| 15 | + license="Mozilla Public License 2.0 (MPL 2.0)", |
| 16 | + keywords="py.test pytest base url mozilla automation", |
| 17 | + classifiers=[ |
| 18 | + "Development Status :: 5 - Production/Stable", |
| 19 | + "Framework :: Pytest", |
| 20 | + "Intended Audience :: Developers", |
| 21 | + "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", |
| 22 | + "Operating System :: POSIX", |
| 23 | + "Operating System :: Microsoft :: Windows", |
| 24 | + "Operating System :: MacOS :: MacOS X", |
| 25 | + "Topic :: Software Development :: Quality Assurance", |
| 26 | + "Topic :: Software Development :: Testing", |
| 27 | + "Topic :: Utilities", |
| 28 | + "Programming Language :: Python", |
| 29 | + "Programming Language :: Python :: 2.7", |
| 30 | + "Programming Language :: Python :: 3.6", |
| 31 | + "Programming Language :: Python :: Implementation :: CPython", |
| 32 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 33 | + ], |
| 34 | +) |
0 commit comments