|
1 | 1 | from setuptools import setup |
2 | 2 |
|
3 | | -__VERSION__ = '1.4.3' |
| 3 | +__VERSION__ = "1.4.4" |
4 | 4 |
|
5 | 5 | setup( |
6 | | - name='pydpkg', |
7 | | - packages=['pydpkg'], # this must be the same as the name above |
| 6 | + name="pydpkg", |
| 7 | + packages=["pydpkg"], # this must be the same as the name above |
8 | 8 | python_requires=">=3.4", |
9 | 9 | version=__VERSION__, |
10 | | - description=('A python library for parsing debian package control ' |
11 | | - 'headers and comparing version strings'), |
12 | | - long_description=open('README.md').read(), |
13 | | - long_description_content_type='text/markdown', |
14 | | - author='Nathan J. Mehl', |
15 | | - author_email='pypi@memory.blank.org', |
16 | | - url='https://github.com/memory/python-dpkg', |
17 | | - download_url=( |
18 | | - 'https://github.com/memory/python-dpkg/tarball/%s' % __VERSION__), |
19 | | - keywords=['apt', 'debian', 'dpkg', 'packaging'], |
20 | | - setup_requires=[ |
21 | | - 'wheel' |
22 | | - ], |
23 | | - install_requires=[ |
24 | | - 'arpy==1.1.1', |
25 | | - 'six==1.10.0', |
26 | | - 'PGPy==0.4.1' |
27 | | - ], |
| 10 | + description=( |
| 11 | + "A python library for parsing debian package control " |
| 12 | + "headers and comparing version strings" |
| 13 | + ), |
| 14 | + long_description=open("README.md").read(), |
| 15 | + long_description_content_type="text/markdown", |
| 16 | + author="Nathan J. Mehl", |
| 17 | + author_email="pypi@memory.blank.org", |
| 18 | + url="https://github.com/memory/python-dpkg", |
| 19 | + download_url="https://github.com/memory/python-dpkg/tarball/%s" % __VERSION__, |
| 20 | + keywords=["apt", "debian", "dpkg", "packaging"], |
| 21 | + setup_requires=["wheel"], |
| 22 | + install_requires=["arpy==1.1.1", "six<2.0.0", "PGPy==0.4.1"], |
28 | 23 | extras_require={ |
29 | | - 'test': ['pep8==1.7.0', 'pytest==3.1.1', 'pylint==2.3.1'], |
30 | | - 'publish': ['twine'] |
| 24 | + "test": ["pep8==1.7.0", "pytest==3.1.1", "pylint==2.3.1"], |
| 25 | + "publish": ["twine"], |
31 | 26 | }, |
32 | | - scripts=[ |
33 | | - 'scripts/dpkg-inspect.py' |
34 | | - ], |
| 27 | + scripts=["scripts/dpkg-inspect.py"], |
35 | 28 | classifiers=[ |
36 | 29 | "Development Status :: 5 - Production/Stable", |
37 | 30 | "License :: OSI Approved :: Apache Software License", |
|
42 | 35 | "Programming Language :: Python :: 3.8", |
43 | 36 | "Programming Language :: Python :: Implementation :: CPython", |
44 | 37 | "Topic :: System :: Archiving :: Packaging", |
45 | | - ] |
| 38 | + ], |
46 | 39 | ) |
0 commit comments