-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (48 loc) · 1.73 KB
/
setup.py
File metadata and controls
56 lines (48 loc) · 1.73 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# -*- coding: utf-8 -*-
"""
pycompsense: A toolbox for compressed sensing and sparse reconstruction algorithms.
Copyright (C) 2012 Amit Aides
Author: Amit Aides <amitibo@tx.technion.ac.il>
URL: <http://bitbucket.org/amitibo/pycompsense>
License: See attached license file
"""
from setuptools import setup
NAME = 'pycompsense'
PACKAGE_NAME = 'compsense'
PACKAGES = [PACKAGE_NAME, '%s.algorithms' % PACKAGE_NAME]
VERSION = '0.1.3'
DESCRIPTION = 'A toolbox for compressed sensing and sparse reconstruction algorithms'
LONG_DESCRIPTION = """
`pycompsense` is a toolbox for compressed sensing and sparse reconstruction algorithms.
It is based on `sparco <http://www.cs.ubc.ca/labs/scl/sparco/>`_.
`pycompsense` includes an implementation of `TwIST <http://www.lx.it.pt/~bioucas/TwIST/TwIST.htm>`_.
"""
AUTHOR = 'Amit Aides'
EMAIL = 'amitibo@tx.technion.ac.il'
KEYWORDS = ["singal processing", "sparse representation", "compressed sensing", "CS", 'optimization']
LICENSE = 'GPLv3'
CLASSIFIERS = [
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Development Status :: 2 - Pre-Alpha',
'Topic :: Scientific/Engineering'
]
URL = "http://bitbucket.org/amitibo/pycompsense"
def main():
"""main setup function"""
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
url=URL,
keywords=KEYWORDS,
classifiers=CLASSIFIERS,
license=LICENSE,
packages=PACKAGES,
package_data={PACKAGE_NAME: ['data/*.*']},
install_requires=['pyrwt >= 0.2'],
)
if __name__ == '__main__':
main()