From 99fde585a39d7867d2c2257b74a7cc441bc9f2a5 Mon Sep 17 00:00:00 2001 From: SVN-Git Migration Date: Thu, 8 Oct 2015 11:51:48 -0700 Subject: Imported Upstream version 0.3 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index bcfd6d5..a755df8 100644 --- a/setup.py +++ b/setup.py @@ -46,14 +46,14 @@ for dirpath, dirnames, filenames in os.walk(tagging_dir): data_files.append([dirpath, [os.path.join(dirpath, f) for f in filenames]]) # Dynamically calculate the version based on tagging.VERSION -version_tuple = (0, 3, 'pre') +version_tuple = (0, 3, None) if version_tuple[2] is not None: version = "%d.%d_%s" % version_tuple else: version = "%d.%d" % version_tuple[:2] setup( - name = 'tagging', + name = 'django-tagging', version = version, description = 'Generic tagging application for Django', author = 'Jonathan Buchanan', -- cgit v1.2.3