File size: 763 Bytes
de0bff3
 
 
 
 
963de37
2e1823f
ce1d18e
 
 
 
 
 
120f728
fcba0a9
763def2
 
 
 
 
 
 
2cb7306
1b47010
 
763def2
de0bff3
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
from setuptools import setup, find_packages

setup(
    name='portiloop',
    version='0.0.1',
    packages=[package for package in find_packages()],
    description='Portiloop software library',
    install_requires=['wheel',
                      'EDFlib-Python',
                      'numpy',
                      'portilooplot',
                      'ipywidgets',
                      'python-periphery',
                      'scipy',
                      'matplotlib',
                     ],
    extras_require={
        'Portiloop': ['pycoral', 
                'spidev', 
                'pylsl-coral', 
                'pyalsaaudio'],
        'PC': ['gradio',
               'tensorflow',
               'pyxdf',
               'wonambi']
    },
)