a | b/setup.py | ||
---|---|---|---|
1 | from distutils.core import setup |
||
2 | |||
3 | setup( |
||
4 | name='EEGLearn', |
||
5 | version='1.11', |
||
6 | packages=['eeglearn'], |
||
7 | install_requires=['numpy==1.13.1', 'scipy==0.19.1', 'scikit-learn==0.18.2', 'theano==0.8', |
||
8 | 'lasagne @ git+https://github.com/Lasagne/Lasagne.git#egg=lasagne=0.2.dev1'], |
||
9 | url='https://github.com/pbashivan/EEGLearn', |
||
10 | license='GNU GENERAL PUBLIC LICENSE', |
||
11 | author='Pouya Bashivan', |
||
12 | description='Representation learning from EEG' |
||
13 | ) |