annotate gmm_baseline_experiments/external_libs/librosa/librosa-0.3.1/setup.py @ 5:b523456082ca
tip
Update path to dataset and reflect modified chunk naming convention.
author |
peterf |
date |
Mon, 01 Feb 2016 21:35:27 +0000 |
parents |
cb535b80218a |
children |
|
rev |
line source |
peterf@2
|
1 from setuptools import setup
|
peterf@2
|
2
|
peterf@2
|
3 setup(
|
peterf@2
|
4 name='librosa',
|
peterf@2
|
5 version='0.3.1',
|
peterf@2
|
6 description='Python module for audio and music processing',
|
peterf@2
|
7 author='Brian McFee',
|
peterf@2
|
8 author_email='brian.mcfee@nyu.edu',
|
peterf@2
|
9 url='http://github.com/bmcfee/librosa',
|
peterf@2
|
10 download_url='http://github.com/bmcfee/librosa/releases',
|
peterf@2
|
11 packages=['librosa'],
|
peterf@2
|
12 package_data={'': ['example_data/*']},
|
peterf@2
|
13 long_description="""A python module for audio and music processing.""",
|
peterf@2
|
14 classifiers=[
|
peterf@2
|
15 "License :: OSI Approved :: ISC License (ISCL)",
|
peterf@2
|
16 "Programming Language :: Python",
|
peterf@2
|
17 "Development Status :: 3 - Alpha",
|
peterf@2
|
18 "Intended Audience :: Developers",
|
peterf@2
|
19 "Topic :: Multimedia :: Sound/Audio :: Analysis",
|
peterf@2
|
20 "Programming Language :: Python :: 2",
|
peterf@2
|
21 "Programming Language :: Python :: 2.7",
|
peterf@2
|
22 "Programming Language :: Python :: 3",
|
peterf@2
|
23 "Programming Language :: Python :: 3.3",
|
peterf@2
|
24 ],
|
peterf@2
|
25 keywords='audio music sound',
|
peterf@2
|
26 license='GPL',
|
peterf@2
|
27 install_requires=[
|
peterf@2
|
28 'audioread',
|
peterf@2
|
29 'numpy >= 1.8.0',
|
peterf@2
|
30 'scipy >= 0.13.0',
|
peterf@2
|
31 'scikit-learn >= 0.14.0',
|
peterf@2
|
32 'matplotlib',
|
peterf@2
|
33 ],
|
peterf@2
|
34 extras_require={
|
peterf@2
|
35 'resample': 'scikits.samplerate>=0.3'
|
peterf@2
|
36 }
|
peterf@2
|
37 )
|