-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 1.17 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
31
from distutils.core import setup
setup(
name='Kino',
version='0.0.1',
description='Toolbox to wait and handle Kinovea movie file recordings.',
long_description='Toolbox to wait and handle Kinovea movie file recordings',
author='Robert Guggenberger',
author_email='robert.guggenberger@uni-tuebingen.de',
url='https://github.com/pyreiz/pykino.git',
download_url='https://github.com/pyreiz/pykino.git',
license='MIT',
packages=['kino'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Science/Research',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Software Development :: Libraries',
]
)