nikcleju@58: from distutils.core import setup nikcleju@58: setup( nikcleju@58: name = "pyCSalgos", nikcleju@61: packages = ["pyCSalgos","pyCSalgos/BP","pyCSalgos/GAP","pyCSalgos/NESTA","pyCSalgos/OMP","pyCSalgos/TST","pyCSalgos/SL0"], nikcleju@58: version = "1.0.0", nikcleju@58: description = "Python Compressed Sensing algorithms", nikcleju@58: author = "Nicolae Cleju", nikcleju@58: author_email = "nikcleju@gmail.com", nikcleju@59: url = 'https://code.soundsoftware.ac.uk/projects/avssrec', nikcleju@58: classifiers = [ nikcleju@58: "Programming Language :: Python", nikcleju@58: "Development Status :: 4 - Beta", nikcleju@58: "Environment :: Other Environment", nikcleju@58: "Intended Audience :: Developers", nikcleju@58: "Intended Audience :: Science/Research", nikcleju@58: "License :: OSI Approved :: GNU General Public License (GPL)", nikcleju@58: "Operating System :: OS Independent", nikcleju@58: "Topic :: Software Development :: Libraries :: Python Modules", nikcleju@58: "Topic :: Scientific/Engineering", nikcleju@58: "Topic :: Scientific/Engineering :: Information Analysis", nikcleju@58: "Topic :: Scientific/Engineering :: Mathematics" nikcleju@58: ], nikcleju@58: long_description = """\ nikcleju@58: Python Compressed Sensing algorithms nikcleju@58: ------------------------------------- nikcleju@58: nikcleju@58: Python implementation of various Compressed Sensing algorithms originally implemented in Matlab. nikcleju@58: nikcleju@58: """ nikcleju@58: )