-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathsetup.py
40 lines (35 loc) · 1.36 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
39
40
#!/usr/bin/env python
from distutils.core import setup
import wyrm
setup(
name='Wyrm',
version=wyrm.__version__,
description='Toolbox for Brain Computer Interfacing Experiments.',
long_description='A Python toolbox for on-line BCI experiments and off-line BCI data analysis.',
author='Bastian Venthur',
author_email='[email protected]',
url='http://venthur.github.io/wyrm/',
download_url='http://github.com/venthur/wyrm/',
license='MIT',
platforms='any',
packages=['wyrm'],
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 :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Education',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Software Development :: Libraries',
]
)