nikcleju@58
|
1 from distutils.core import setup
|
nikcleju@58
|
2 setup(
|
nikcleju@58
|
3 name = "pyCSalgos",
|
nikcleju@68
|
4 packages = ["pyCSalgos","pyCSalgos/ABS","pyCSalgos/BP","pyCSalgos/GAP","pyCSalgos/NESTA","pyCSalgos/OMP","pyCSalgos/TST","pyCSalgos/SL0"],
|
nikcleju@68
|
5 version = "1.1.0",
|
nikcleju@58
|
6 description = "Python Compressed Sensing algorithms",
|
nikcleju@58
|
7 author = "Nicolae Cleju",
|
nikcleju@58
|
8 author_email = "nikcleju@gmail.com",
|
nikcleju@68
|
9 url = 'https://code.soundsoftware.ac.uk/projects/pycsalgos',
|
nikcleju@58
|
10 classifiers = [
|
nikcleju@58
|
11 "Programming Language :: Python",
|
nikcleju@58
|
12 "Development Status :: 4 - Beta",
|
nikcleju@58
|
13 "Environment :: Other Environment",
|
nikcleju@58
|
14 "Intended Audience :: Developers",
|
nikcleju@58
|
15 "Intended Audience :: Science/Research",
|
nikcleju@58
|
16 "License :: OSI Approved :: GNU General Public License (GPL)",
|
nikcleju@58
|
17 "Operating System :: OS Independent",
|
nikcleju@58
|
18 "Topic :: Software Development :: Libraries :: Python Modules",
|
nikcleju@58
|
19 "Topic :: Scientific/Engineering",
|
nikcleju@58
|
20 "Topic :: Scientific/Engineering :: Information Analysis",
|
nikcleju@58
|
21 "Topic :: Scientific/Engineering :: Mathematics"
|
nikcleju@58
|
22 ],
|
nikcleju@58
|
23 long_description = """\
|
nikcleju@58
|
24 Python Compressed Sensing algorithms
|
nikcleju@58
|
25 -------------------------------------
|
nikcleju@58
|
26
|
nikcleju@68
|
27 Python implementation of various Compressed Sensing algorithms, some of them originally implemented in Matlab.
|
nikcleju@68
|
28 Algorithms implemented:
|
nikcleju@68
|
29 - l1 minimization from l1magic
|
nikcleju@68
|
30 - Orthogonal Matching Pursuit
|
nikcleju@68
|
31 - Smoothed L0
|
nikcleju@68
|
32 - Greedy Analysis Pursuit
|
nikcleju@68
|
33 - NESTA
|
nikcleju@68
|
34 - Two Stage Thresholding
|
nikcleju@68
|
35 - Analysis-By-Synthesis (my paper)
|
nikcleju@58
|
36
|
nikcleju@68
|
37 Not thoroughly tested, but I use them for my research. Use at own risk.
|
nikcleju@58
|
38 """
|
nikcleju@68
|
39 )
|