forked from dbdq/neurodecode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (36 loc) · 1002 Bytes
/
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
from setuptools import find_packages, setup
setup(
name='pycnbi',
version='0.9dev',
author='Kyuhwa Lee, Arnaud Desvachez',
author_email='[email protected], [email protected]',
license='The GNU General Public License',
url='https://github.com/dbdq/pycnbi/',
description='Real-time brain-machine interface',
long_description=open('README.md').read(),
packages=find_packages(),
install_requires=[
'h5py>=2.7',
'opencv_python>=3.4',
'numpy>=1.16',
'scipy>=1.2',
'colorama>=0.3.9',
'xgboost>=0.81',
'matplotlib>=3.0.2',
'mne>=0.16',
'psutil>=5.4.8',
'setuptools>=39.0.1',
'pyqtgraph>=0.10.0',
'pylsl>=1.12.2',
'pywin32>=222',
'ipython>=6',
'PyQt5>=5',
'pyxdf>=1.15.2',
'pyserial>=3.4',
'simplejson>=3.16.0',
'scikit_learn>=0.21',
'future',
'configparser',
'lightgbm>=2.3'
]
)