Mercurial > hg > pycsalgos
view setup.py @ 65:3d53309236c4
Added cvxopt_lp.py. Some bugfixes in gap.py and l1eq_pd.py
author | Nic Cleju <nikcleju@gmail.com> |
---|---|
date | Fri, 16 Mar 2012 13:35:47 +0200 |
parents | 15374d30fb87 |
children | cab8a215f9a1 |
line wrap: on
line source
from distutils.core import setup setup( name = "pyCSalgos", packages = ["pyCSalgos","pyCSalgos/BP","pyCSalgos/GAP","pyCSalgos/NESTA","pyCSalgos/OMP","pyCSalgos/TST","pyCSalgos/SL0"], version = "1.0.0", description = "Python Compressed Sensing algorithms", author = "Nicolae Cleju", author_email = "nikcleju@gmail.com", url = 'https://code.soundsoftware.ac.uk/projects/avssrec', classifiers = [ "Programming Language :: Python", "Development Status :: 4 - Beta", "Environment :: Other Environment", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License (GPL)", "Operating System :: OS Independent", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Scientific/Engineering :: Mathematics" ], long_description = """\ Python Compressed Sensing algorithms ------------------------------------- Python implementation of various Compressed Sensing algorithms originally implemented in Matlab. """ )