From 3c00035954753419d795685a9762ac8957b85e04 Mon Sep 17 00:00:00 2001 From: Martin Baeuml Date: Fri, 29 Nov 2013 09:59:34 +0100 Subject: [PATCH] bump version --- setup.py | 9 +++++---- sloth/__init__.py | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index ef782e1..e130ba1 100644 --- a/setup.py +++ b/setup.py @@ -2,6 +2,7 @@ import sys, os from distutils.core import setup from distutils.command.install import INSTALL_SCHEMES +import sloth # the following installation setup is based on django's setup.py def fullsplit(path, result=None): @@ -44,12 +45,12 @@ for dirpath, dirnames, filenames in os.walk(sloth_dir): data_files.append([dirpath, [os.path.join(dirpath, f) for f in filenames]]) setup(name='sloth', - version='0.1', + version=sloth.VERSION, description='The Sloth Labeling Tool', author='CV:HCI Research Group', - url='http://cvhci.anthropomatik.kit.edu', - requires=['importlib', 'okapy', 'PyQt4',], + url='http://sloth.readthedocs.org/', + requires=['importlib', 'PyQt4',], packages=packages, data_files=data_files, scripts=['sloth/bin/sloth'] -) \ No newline at end of file +) diff --git a/sloth/__init__.py b/sloth/__init__.py index 4bc39e6..383e44c 100644 --- a/sloth/__init__.py +++ b/sloth/__init__.py @@ -1,5 +1,5 @@ APP_NAME = """sloth""" ORGANIZATION_NAME = """CV:HCI Research Group""" ORGANIZATION_DOMAIN = """cvhci.anthropomatik.kit.edu""" -VERSION = """0.1""" +VERSION = "1.0"