-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathsetup.py
57 lines (54 loc) · 1.79 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup, find_packages
import glob
import imp
import numpy.distutils.misc_util
version = imp.load_source('msaf.version', 'msaf/version.py')
# MSAF configuration
setup(
name='msaf',
version=version.version,
description='Python module to discover the structure of music files',
author='Oriol Nieto',
author_email='[email protected]',
url='https://github.com/urinieto/msaf',
download_url='https://github.com/urinieto/msaf/releases',
packages=find_packages(),
data_files=[('msaf/algorithms/olda/models',
glob.glob('msaf/algorithms/olda/models/*.npy'))],
long_description="""A python module to segment audio into all its """
"""different large-scale sections and label them based on their """
"""acoustic similarity""",
classifiers=[
"License :: OSI Approved :: MIT",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7"
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4"
],
keywords='audio music sound',
license='MIT',
install_requires=[
'audioread',
'jams',
'numpy >= 1.8.0',
'scipy >= 0.13.0',
'scikit-learn >= 0.14.0',
'seaborn', # For notebook example (but everyone should have this :-))
'matplotlib',
'joblib',
'decorator',
'cvxopt',
'joblib',
'librosa >= 0.4.2',
'mir_eval',
'pandas'
],
extras_require={
'resample': 'scikits.samplerate>=0.3'
},
include_dirs=numpy.distutils.misc_util.get_numpy_include_dirs()
)