Spaces:
Sleeping
Sleeping
File size: 505 Bytes
de0bff3 963de37 2e1823f ce1d18e 9adbe4f ce1d18e de0bff3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
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'
]
)
|