-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (38 loc) · 1.58 KB
/
setup.py
File metadata and controls
40 lines (38 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from distutils.core import setup
setup(
name = "pyCSalgos",
packages = ["pyCSalgos","pyCSalgos/ABS","pyCSalgos/BP","pyCSalgos/GAP","pyCSalgos/NESTA","pyCSalgos/OMP","pyCSalgos/TST","pyCSalgos/SL0"],
version = "1.2.0",
description = "Python Compressed Sensing algorithms",
author = "Nicolae Cleju",
author_email = "nikcleju@gmail.com",
url = 'https://code.soundsoftware.ac.uk/projects/pycsalgos',
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, 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.
""",
requires=['six', 'numpy', 'scipy', 'matplotlib']
)