PortiloopDemo / setup.py
ybouteiller
new interface, lsl, custom filtering
c9c81f5
raw
history blame
573 Bytes
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',
'matplotlib',
'portilooplot',
'ipywidgets',
'python-periphery',
'spidev',
'pylsl-coral',
'scipy'
]
)