comparison setup.py @ 68:cab8a215f9a1 tip

Minor
author Nic Cleju <nikcleju@gmail.com>
date Tue, 09 Jul 2013 14:50:09 +0300
parents 15374d30fb87
children
comparison
equal deleted inserted replaced
67:a8d96e67717e 68:cab8a215f9a1
1 from distutils.core import setup 1 from distutils.core import setup
2 setup( 2 setup(
3 name = "pyCSalgos", 3 name = "pyCSalgos",
4 packages = ["pyCSalgos","pyCSalgos/BP","pyCSalgos/GAP","pyCSalgos/NESTA","pyCSalgos/OMP","pyCSalgos/TST","pyCSalgos/SL0"], 4 packages = ["pyCSalgos","pyCSalgos/ABS","pyCSalgos/BP","pyCSalgos/GAP","pyCSalgos/NESTA","pyCSalgos/OMP","pyCSalgos/TST","pyCSalgos/SL0"],
5 version = "1.0.0", 5 version = "1.1.0",
6 description = "Python Compressed Sensing algorithms", 6 description = "Python Compressed Sensing algorithms",
7 author = "Nicolae Cleju", 7 author = "Nicolae Cleju",
8 author_email = "nikcleju@gmail.com", 8 author_email = "nikcleju@gmail.com",
9 url = 'https://code.soundsoftware.ac.uk/projects/avssrec', 9 url = 'https://code.soundsoftware.ac.uk/projects/pycsalgos',
10 classifiers = [ 10 classifiers = [
11 "Programming Language :: Python", 11 "Programming Language :: Python",
12 "Development Status :: 4 - Beta", 12 "Development Status :: 4 - Beta",
13 "Environment :: Other Environment", 13 "Environment :: Other Environment",
14 "Intended Audience :: Developers", 14 "Intended Audience :: Developers",
22 ], 22 ],
23 long_description = """\ 23 long_description = """\
24 Python Compressed Sensing algorithms 24 Python Compressed Sensing algorithms
25 ------------------------------------- 25 -------------------------------------
26 26
27 Python implementation of various Compressed Sensing algorithms originally implemented in Matlab. 27 Python implementation of various Compressed Sensing algorithms, some of them originally implemented in Matlab.
28 Algorithms implemented:
29 - l1 minimization from l1magic
30 - Orthogonal Matching Pursuit
31 - Smoothed L0
32 - Greedy Analysis Pursuit
33 - NESTA
34 - Two Stage Thresholding
35 - Analysis-By-Synthesis (my paper)
28 36
37 Not thoroughly tested, but I use them for my research. Use at own risk.
29 """ 38 """
30 ) 39 )