From 218f1eeeccffe735da863d9facc9ecbf4fadb6ff Mon Sep 17 00:00:00 2001 From: Calvin Giles Date: Sun, 2 Aug 2015 02:38:56 +0100 Subject: [PATCH] Incremented version to 0.0.3 --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c8f5fc4..9855a9f 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,13 @@ from distutils.core import setup +version = '0.0.3' + setup( name='cosine_transform', - version='0.0.2', + version=version, packages=['cosine_transform'], url='https://github.com/calvingiles/cosine_transform', - download_url='https://github.com/calvingiles/cosine_transform/tarball/0.0.2', + download_url='https://github.com/calvingiles/cosine_transform/tarball/{}'.format(version), license='LICENCE.txt', author='calvin', author_email='calvin.giles@gmail.com',