diff gmm_baseline_experiments/external_libs/librosa/librosa-0.3.1/setup.py @ 2:cb535b80218a

Remaining scripts and brief documentation
author peterf
date Fri, 10 Jul 2015 23:24:23 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gmm_baseline_experiments/external_libs/librosa/librosa-0.3.1/setup.py	Fri Jul 10 23:24:23 2015 +0100
@@ -0,0 +1,37 @@
+from setuptools import setup
+
+setup(
+    name='librosa',
+    version='0.3.1',
+    description='Python module for audio and music processing',
+    author='Brian McFee',
+    author_email='brian.mcfee@nyu.edu',
+    url='http://github.com/bmcfee/librosa',
+    download_url='http://github.com/bmcfee/librosa/releases',
+    packages=['librosa'],
+    package_data={'': ['example_data/*']},
+    long_description="""A python module for audio and music processing.""",
+    classifiers=[
+        "License :: OSI Approved :: ISC License (ISCL)",
+        "Programming Language :: Python",
+        "Development Status :: 3 - Alpha",
+        "Intended Audience :: Developers",
+        "Topic :: Multimedia :: Sound/Audio :: Analysis",
+        "Programming Language :: Python :: 2",
+        "Programming Language :: Python :: 2.7",
+        "Programming Language :: Python :: 3",
+        "Programming Language :: Python :: 3.3",
+    ],
+    keywords='audio music sound',
+    license='GPL',
+    install_requires=[
+        'audioread',
+        'numpy >= 1.8.0',
+        'scipy >= 0.13.0',
+        'scikit-learn >= 0.14.0',
+        'matplotlib',
+    ],
+    extras_require={
+        'resample': 'scikits.samplerate>=0.3'
+    }
+)