Mercurial > hg > pycsalgos
changeset 58:210aee06e802
Added setup.py and README.txt
author | nikcleju |
---|---|
date | Fri, 24 Feb 2012 18:30:42 +0000 |
parents | 6e51880715f3 |
children | 319927cc961d |
files | README.txt setup.py |
diffstat | 2 files changed, 40 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README.txt Fri Feb 24 18:30:42 2012 +0000 @@ -0,0 +1,10 @@ +Nicolae Cleju +Technical University Gheorghe Asachi of Iasi, Romania +Queen Mary, University of London +24.02.2012 + +Python Compressed Sensing algorithms +------------------------------------- + +Python implementation of various Compressed Sensing algorithms originally implemented in Matlab. +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Fri Feb 24 18:30:42 2012 +0000 @@ -0,0 +1,30 @@ +from distutils.core import setup +setup( + name = "pyCSalgos", + packages = ["pyCSalgos","pyCSalgos/BP","pyCSalgos/GAP","pyCSalgos/NESTA","pyCSalgos/OMP","pyCSalgos/RecomTST","pyCSalgos/SL0"], + version = "1.0.0", + description = "Python Compressed Sensing algorithms", + author = "Nicolae Cleju", + author_email = "nikcleju@gmail.com", + utl = 'https://code.soundsoftware.ac.uk/projects/svsa', + 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. + +""" +) \ No newline at end of file