forked from librosa/librosa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 833 Bytes
/
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
from setuptools import setup
setup(
name='librosa',
version='0.1.0',
description='Python module for audio and music processing',
author='Brian McFee',
author_email='[email protected]',
url='http://github.com/bmcfee/librosa',
packages=['librosa'],
long_description="""\
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.7.0',
'scipy',
'scikit-learn',
],
)