-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathsetup.py
32 lines (30 loc) · 939 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
30
31
32
from setuptools import setup
with open('README.rst') as file:
long_description = file.read()
setup(
name='mir_eval',
version='0.3',
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 >= 0.9.0',
'future',
'six'
],
)