-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
19 lines (18 loc) · 923 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
setup(name='midas',
version='1.1.0',
description='The MIDAS (Modular Integrated Distributed Analysis System) is a system for online analysis of streaming signals and allows easy integration of such into machine learning frameworks.',
author='Andreas Henelius, Jari Torniainen, Brain Work Research Center at the Finnish Institute of Occupational Health',
author_email='[email protected], [email protected]',
url='https://github.com/bwrc/midas',
license='MIT',
packages=['midas'],
package_dir={'midas': 'midas'},
include_package_data=False,
install_requires = ['bottle>=0.12',
'PyZMQ>=14.3.1',
'Waitress>=0.8.9',
'pylsl>=1.10.4'],
entry_points={"console_scripts":
["midas-dispatcher = midas.dispatcher:run_from_cli"]}
)