forked from DCASE-REPO/dcase_util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (59 loc) · 1.87 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
58
59
60
61
62
63
from setuptools import setup, find_packages
requirements = [
'numpy>=1.9.2',
'matplotlib>=2.0.0',
'librosa>=0.5.0',
'six>=1.10.0',
'soundfile>=0.9.0',
'coloredlogs>=5.2',
'tqdm >=4.11.2',
'pyyaml>=3.11',
'msgpack-python>=0.4.8',
'pydot-ng >= 1.0.0',
'pafy>=0.5.3.1',
'pandas>=0.19.2',
'youtube-dl>=2017.10.1',
'validators>=0.12.0',
'pyparsing>=2.2.0',
'requests>=2.12.4',
'titlecase>=0.12.0',
'ujson>=1.35',
'scipy>=0.19.1',
'colorama>=0.3.7',
'python-magic>=0.4.13',
'future>=0.16.0'
]
try:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst')
except (IOError, ImportError, RuntimeError):
long_description = 'A collection of utilities for Detection and Classification of Acoustic Scenes and Events'
setup(
name='dcase_util',
version='0.1.8',
description='A collection of utilities for Detection and Classification of Acoustic Scenes and Events',
author='Toni Heittola',
author_email='[email protected]',
url='https://github.com/DCASE-REPO/dcase_util',
download_url='https://github.com/DCASE-REPO/dcase_util/releases',
packages=find_packages(),
package_data={
'': ['utils/example_data/*']
},
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",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
keywords='audio sound',
license='MIT',
install_requires=requirements,
setup_requires=['nose>=1.3'],
)