-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
executable file
·39 lines (34 loc) · 1.4 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
32
33
34
35
36
37
38
#!/usr/bin/env python
from distutils.core import setup
import libmushu
setup(
name = 'Mushu',
version = libmushu.__version__,
description = 'Brain Computer Interfacing signal acquisition software.',
long_description = 'A Python library for BCI signal acquisition. It can be used as a stand-alone application or as a library.',
author = 'Bastian Venthur',
author_email = '[email protected]',
url = 'http://venthur.github.io/mushu/',
download_url = 'http://github.com/venthur/mushu/',
license = 'GPL2',
platforms = 'any',
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 :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Education',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Software Development :: Libraries',
],
packages = ['libmushu', 'libmushu.driver'],
scripts = ['mushu.py'],
)