setup.py 485 B

12345678910111213141516
  1. from setuptools import setup, find_packages
  2. from os import path
  3. setup(name = 'PyDeePC',
  4. packages=find_packages(),
  5. version = '0.3.6',
  6. description = 'Python library for Data-Enabled Predictive Control',
  7. url = 'https://github.com/rssalessio/PyDeePC',
  8. author = 'Alessio Russo',
  9. author_email = 'arusso2@bu.edu',
  10. install_requires=['numpy', 'scipy', 'cvxpy', 'matplotlib', 'jupyter', 'ecos'],
  11. license='MIT',
  12. zip_safe=False,
  13. python_requires='>=3.7',
  14. )