forked from mir-evaluation/mir_eval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.06 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
34
35
36
37
from setuptools import setup
with open('README.rst') as file:
long_description = file.read()
setup(
name='mir_eval',
version='0.5',
description='Common metrics for common audio/music processing tasks.',
author='Colin Raffel',
author_email='[email protected]',
url='https://github.com/craffel/mir_eval',
packages=['mir_eval'],
long_description=long_description,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
'Development Status :: 5 - Production/Stable',
"Intended Audience :: Developers",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
keywords='audio music mir dsp',
license='MIT',
install_requires=[
'numpy >= 1.7.0',
'scipy >= 1.0.0',
'future',
'six'
],
extras_require={
'display': ['matplotlib>=1.5.0',
'scipy>=1.0.0'],
'testing': ['matplotlib>=2.1.0,<3']
}
)