From 26081fcf3e989eeadb139d32084300d4dc85c5b8 Mon Sep 17 00:00:00 2001 From: "Nathan J. Mehl" Date: Fri, 9 Jun 2017 10:55:54 -0700 Subject: [PATCH] fix tarball string in setup.py --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index fd8da4d..298968b 100644 --- a/setup.py +++ b/setup.py @@ -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',