Skip to content

Commit 27fb00d

Browse files
authored
Merge pull request #2 from memory/loosen-six-req
loosen six dependency
2 parents aa78757 + 816ff70 commit 27fb00d

2 files changed

Lines changed: 21 additions & 28 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
target/
22
*.egg-info
33
.cache
4-
venv/
4+
venv*/
55
*.whl
66
*.pyc
77
__pycache__

setup.py

Lines changed: 20 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,30 @@
11
from setuptools import setup
22

3-
__VERSION__ = '1.4.3'
3+
__VERSION__ = "1.4.4"
44

55
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
88
python_requires=">=3.4",
99
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"],
2823
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"],
3126
},
32-
scripts=[
33-
'scripts/dpkg-inspect.py'
34-
],
27+
scripts=["scripts/dpkg-inspect.py"],
3528
classifiers=[
3629
"Development Status :: 5 - Production/Stable",
3730
"License :: OSI Approved :: Apache Software License",
@@ -42,5 +35,5 @@
4235
"Programming Language :: Python :: 3.8",
4336
"Programming Language :: Python :: Implementation :: CPython",
4437
"Topic :: System :: Archiving :: Packaging",
45-
]
38+
],
4639
)

0 commit comments

Comments
 (0)