annotate setup.py @ 59:319927cc961d

Fixed URL in setup.py. Added install line in README
author Nic Cleju <nikcleju@gmail.com>
date Mon, 27 Feb 2012 20:41:11 +0000
parents 210aee06e802
children 15374d30fb87
rev   line source
nikcleju@58 1 from distutils.core import setup
nikcleju@58 2 setup(
nikcleju@58 3 name = "pyCSalgos",
nikcleju@58 4 packages = ["pyCSalgos","pyCSalgos/BP","pyCSalgos/GAP","pyCSalgos/NESTA","pyCSalgos/OMP","pyCSalgos/RecomTST","pyCSalgos/SL0"],
nikcleju@58 5 version = "1.0.0",
nikcleju@58 6 description = "Python Compressed Sensing algorithms",
nikcleju@58 7 author = "Nicolae Cleju",
nikcleju@58 8 author_email = "nikcleju@gmail.com",
nikcleju@59 9 url = 'https://code.soundsoftware.ac.uk/projects/avssrec',
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@58 27 Python implementation of various Compressed Sensing algorithms originally implemented in Matlab.
nikcleju@58 28
nikcleju@58 29 """
nikcleju@58 30 )