Merge branch 'release-1.0'

This commit is contained in:
Martin Baeuml
2013-11-29 10:03:00 +01:00
2 changed files with 6 additions and 5 deletions
+5 -4
View File
@@ -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']
)
)
+1 -1
View File
@@ -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"