-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
49 lines (45 loc) · 1.53 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
from setuptools import setup, find_packages
from importlib.machinery import SourceFileLoader
import sys
version = SourceFileLoader('carat.version',
'carat/version.py').load_module()
with open('README.md', 'r') as fdesc:
long_description = fdesc.read()
setup(
name='carat',
version=version.version,
description='Computer-Aided Rhythm Analysis Toolbox',
author='Martín Rocamora, carat development team',
author_email='[email protected]',
url='http://github.com/mrocamora/carat',
download_url='http://github.com/mrocamora/carat/releases',
packages=find_packages(),
package_data={'': ['example_data/*']},
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords='audio music sound',
license='MIT',
install_requires=[
'audioread >= 2.1.5',
'numpy >= 1.17.0',
'scipy >= 1.2.0',
'scikit-learn >= 0.19.1',
'soundfile >= 0.10.2',
'librosa >= 0.8.0',
'matplotlib >= 2.0.0',
'sounddevice >= 0.3.13'
],
extras_require={
'docs': ['numpydoc', 'sphinx!=1.3.1', 'sphinx_rtd_theme',
'matplotlib >= 2.0.0',
'sphinxcontrib-versioning >= 2.2.1',
'sphinx-gallery'],
'tests': ['matplotlib >= 2.1'],
'display': ['matplotlib >= 1.5'],
}
)