forked from librosa/librosa
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (32 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup
setup(
name='librosa',
version='0.3.0',
description='Python module for audio and music processing',
author='Brian McFee',
author_email='[email protected]',
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 :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
],
keywords='audio music sound',
license='GPL',
install_requires=[
'audioread',
'numpy >= 1.8.0',
'scipy',
'scikit-learn >= 0.14.0',
'matplotlib',
],
extras_require = {
'resample': 'scikits.samplerate>=0.3'
}
)