fix tarball string in setup.py

This commit is contained in:
Nathan J. Mehl 2017-06-09 10:55:54 -07:00
parent a30e610525
commit 26081fcf3e
1 changed files with 5 additions and 2 deletions

View File

@ -1,13 +1,16 @@
from distutils.core import setup
__VERSION__ = '1.1.2'
setup(
name='pydpkg',
packages=['pydpkg'], # this must be the same as the name above
version='1.1.1',
version=__VERSION__,
description='A python library for parsing debian package control headers and comparing version strings',
author='Nathan J. Mehl',
author_email='n@climate.com',
url='https://github.com/theclimatecorporation/python-dpkg',
download_url='https://github.com/theclimatecorporation/python-dpkg/tarball/1.1',
download_url='https://github.com/theclimatecorporation/python-dpkg/tarball/%s' % __VERSION__,
keywords=['apt', 'debian', 'dpkg', 'packaging'],
install_requires=[
'arpy==1.1.1',