-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (27 loc) · 1.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from distutils.core import setup
import sys
sys.path.append('slideo')
import slideo.slideotracker as slideo
version = open('VERSION').readline().rstrip()
setup(name='slideotracker',
version=version,
author='Sebastien Campion',
author_email='[email protected]',
url='http://slideotracker.gforge.inria.fr/',
#download_url='',
description='Synchronize slides with the corresponding video recording using computer vision algorithms IDDN.FR.001.100021.000.S.P.2011.000.40000',
long_description=slideo.SlideoTracker.__doc__,
packages = ['slideo'],
scripts = ['scripts/slideotracker'],
keywords='synchronise slides videos',
license='Lesser Affero General Public License v3',
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Topic :: Multimedia'
],
)