PortiloopDemo / setup.py
msobral
merge with backup
963de37
raw
history blame
331 Bytes
from setuptools import setup, find_packages
setup(
name='portiloop',
version='0.0.1',
packages=[package for package in find_packages()],
description='Library for portiloop',
install_requires=['numpy',
'matplotlib',
'portilooplot',
'ipywidgets']
)