Mercurial > hg > chime-home-dataset-annotation-and-baseline-evaluation-code
comparison 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 |
comparison
equal
deleted
inserted
replaced
1:f079d2de4aa2 | 2:cb535b80218a |
---|---|
1 from setuptools import setup | |
2 | |
3 setup( | |
4 name='librosa', | |
5 version='0.3.1', | |
6 description='Python module for audio and music processing', | |
7 author='Brian McFee', | |
8 author_email='brian.mcfee@nyu.edu', | |
9 url='http://github.com/bmcfee/librosa', | |
10 download_url='http://github.com/bmcfee/librosa/releases', | |
11 packages=['librosa'], | |
12 package_data={'': ['example_data/*']}, | |
13 long_description="""A python module for audio and music processing.""", | |
14 classifiers=[ | |
15 "License :: OSI Approved :: ISC License (ISCL)", | |
16 "Programming Language :: Python", | |
17 "Development Status :: 3 - Alpha", | |
18 "Intended Audience :: Developers", | |
19 "Topic :: Multimedia :: Sound/Audio :: Analysis", | |
20 "Programming Language :: Python :: 2", | |
21 "Programming Language :: Python :: 2.7", | |
22 "Programming Language :: Python :: 3", | |
23 "Programming Language :: Python :: 3.3", | |
24 ], | |
25 keywords='audio music sound', | |
26 license='GPL', | |
27 install_requires=[ | |
28 'audioread', | |
29 'numpy >= 1.8.0', | |
30 'scipy >= 0.13.0', | |
31 'scikit-learn >= 0.14.0', | |
32 'matplotlib', | |
33 ], | |
34 extras_require={ | |
35 'resample': 'scikits.samplerate>=0.3' | |
36 } | |
37 ) |