|
8 | 8 |
|
9 | 9 | def read(fname):
|
10 | 10 | file_path = os.path.join(os.path.dirname(__file__), fname)
|
11 |
| - return codecs.open(file_path, encoding='utf-8').read() |
| 11 | + return codecs.open(file_path, encoding="utf-8").read() |
12 | 12 |
|
13 | 13 |
|
14 | 14 | setup(
|
15 |
| - name='pytest-icdiff', |
16 |
| - version='0.6', |
17 |
| - author='Harry Percival', |
18 |
| - |
19 |
| - maintainer='Harry Percival', |
20 |
| - maintainer_email='[email protected]', |
21 |
| - license='Unlicense', |
22 |
| - url='https://github.com/hjwp/pytest-icdiff', |
23 |
| - description='use icdiff for better error messages in pytest assertions', |
24 |
| - long_description=read('README.rst') + read('HISTORY.rst'), |
25 |
| - long_description_content_type='text/x-rst', |
26 |
| - py_modules=['pytest_icdiff'], |
27 |
| - python_requires='>=3.6', |
28 |
| - install_requires=['pytest', 'icdiff', 'pprintpp'], |
| 15 | + name="pytest-icdiff", |
| 16 | + version="0.6", |
| 17 | + author="Harry Percival", |
| 18 | + |
| 19 | + maintainer="Harry Percival", |
| 20 | + maintainer_email="[email protected]", |
| 21 | + license="Unlicense", |
| 22 | + url="https://github.com/hjwp/pytest-icdiff", |
| 23 | + description="use icdiff for better error messages in pytest assertions", |
| 24 | + long_description=read("README.rst") + read("HISTORY.rst"), |
| 25 | + long_description_content_type="text/x-rst", |
| 26 | + py_modules=["pytest_icdiff"], |
| 27 | + python_requires=">=3.6", |
| 28 | + install_requires=["pytest", "icdiff", "pprintpp"], |
29 | 29 | classifiers=[
|
30 |
| - 'Development Status :: 4 - Beta', |
31 |
| - 'Framework :: Pytest', |
32 |
| - 'Intended Audience :: Developers', |
33 |
| - 'Topic :: Software Development :: Testing', |
34 |
| - 'Programming Language :: Python', |
35 |
| - 'Programming Language :: Python :: 3.6', |
36 |
| - 'Programming Language :: Python :: 3.7', |
37 |
| - 'Programming Language :: Python :: 3.8', |
38 |
| - 'Operating System :: OS Independent', |
39 |
| - 'License :: Public Domain', |
| 30 | + "Development Status :: 4 - Beta", |
| 31 | + "Framework :: Pytest", |
| 32 | + "Intended Audience :: Developers", |
| 33 | + "Topic :: Software Development :: Testing", |
| 34 | + "Programming Language :: Python", |
| 35 | + "Programming Language :: Python :: 3.6", |
| 36 | + "Programming Language :: Python :: 3.7", |
| 37 | + "Programming Language :: Python :: 3.8", |
| 38 | + "Operating System :: OS Independent", |
| 39 | + "License :: Public Domain", |
40 | 40 | ],
|
41 | 41 | entry_points={
|
42 |
| - 'pytest11': [ |
43 |
| - 'icdiff = pytest_icdiff', |
| 42 | + "pytest11": [ |
| 43 | + "icdiff = pytest_icdiff", |
44 | 44 | ],
|
45 | 45 | },
|
46 | 46 | )
|
0 commit comments