changeset 68:cab8a215f9a1 tip

Minor
author Nic Cleju <nikcleju@gmail.com>
date Tue, 09 Jul 2013 14:50:09 +0300
parents a8d96e67717e
children
files setup.py
diffstat 1 files changed, 14 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Tue Jul 09 14:21:10 2013 +0300
+++ b/setup.py	Tue Jul 09 14:50:09 2013 +0300
@@ -1,12 +1,12 @@
 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",
+    packages = ["pyCSalgos","pyCSalgos/ABS","pyCSalgos/BP","pyCSalgos/GAP","pyCSalgos/NESTA","pyCSalgos/OMP","pyCSalgos/TST","pyCSalgos/SL0"],
+    version = "1.1.0",
     description = "Python Compressed Sensing algorithms",
     author = "Nicolae Cleju",
     author_email = "nikcleju@gmail.com",
-    url = 'https://code.soundsoftware.ac.uk/projects/avssrec',
+    url = 'https://code.soundsoftware.ac.uk/projects/pycsalgos',
     classifiers = [
         "Programming Language :: Python",
         "Development Status :: 4 - Beta",
@@ -24,7 +24,16 @@
 Python Compressed Sensing algorithms
 -------------------------------------
 
-Python implementation of various Compressed Sensing algorithms originally implemented in Matlab.
+Python implementation of various Compressed Sensing algorithms, some of them originally implemented in Matlab.
+Algorithms implemented:
+- l1 minimization from l1magic
+- Orthogonal Matching Pursuit
+- Smoothed L0
+- Greedy Analysis Pursuit
+- NESTA
+- Two Stage Thresholding
+- Analysis-By-Synthesis (my paper)
 
+Not thoroughly tested, but I use them for my research. Use at own risk. 
 """
-)
\ No newline at end of file
+)