mirror of
https://github.com/wassname/sloth.git
synced 2026-06-27 16:01:43 +08:00
Merge branch 'release-1.0'
This commit is contained in:
@@ -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
@@ -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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user