-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 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
31
32
from distutils.core import setup
setup(
name='tyros-lsl',
version='0.0.1',
description='Toolbox to receive data from tyroS and send as LSL streams.',
long_description='A Python Toolbox to receive data from tyroS and send as labstreaminglayer streams',
author='Robert Guggenberger',
author_email='robert.guggenberger@uni-tuebingen.de',
url='https://github.com/agricolab/app-tyros',
download_url='https://github.com/agricolab/app-tyros',
license='MIT',
packages=['tyros'],
install_requires=['pylsl'],
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',
]
)