forked from mir-dataset-loaders/mirdata
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 1.25 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (34 loc) · 1.25 KB
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
""" Setup script for mir_datasets. """
from setuptools import setup, find_packages
if __name__ == '__main__':
setup(
name='mirdata',
version='0.0.17',
description='Common loaders for MIR datasets.',
url='https://github.com/mir-dataset-loaders/mirdata',
packages=find_packages(exclude=['test', '*.test', '*.test.*']),
download_url='http://github.com/mir-dataset-loaders/mirdata/releases',
package_data={'mirdata': ['indexes/*']},
long_description="""Common loaders for MIR datasets.""",
keywords='mir dataset loader audio',
license='BSD-3-Clause',
install_requires=['tqdm', 'librosa >= 0.7.0', 'numpy>=1.16', 'six', 'jams', 'requests'],
extras_require={
'tests': [
'pytest>=4.4.0',
'pytest-cov>=2.6.1',
'pytest-pep8>=1.0.0',
'pytest-mock>=1.10.1',
'pytest-localserver>=0.5.0',
'testcontainers>=2.3',
'future==0.17.1',
'coveralls>=1.7.0',
],
'docs': [
'sphinx',
'sphinxcontrib-napoleon',
'sphinx_rtd_theme',
'numpydoc',
],
},
)