-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
53 lines (49 loc) · 1.61 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
from setuptools import setup, find_packages
requirements = [
'numpy>=1.9.2',
'scipy>=0.19.1',
'matplotlib>=2.0.0',
'librosa>=0.7.0',
'six>=1.10.0',
'future>=0.16.0',
'soundfile>=0.9.0',
'pyyaml>=3.11',
'requests>=2.12.4',
'tqdm>=4.11.2',
'pydot-ng>= 1.0.0',
'validators>=0.12.0',
'python-magic>=0.4.13'
]
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.2.20',
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.6",
],
keywords='audio sound',
license='MIT',
install_requires=requirements,
setup_requires=['nose>=1.3'],
)