-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
53 lines (50 loc) · 1.73 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
import setuptools
from importlib.machinery import SourceFileLoader
version = SourceFileLoader('dcase_models.version',
'dcase_models/version.py').load_module()
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="DCASE-models",
version=version.version,
author="Pablo Zinemanas",
author_email="[email protected]",
description="Python library for rapid prototyping of environmental sound analysis systems",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pzinemanas/DCASE-models",
download_url='http://github.com/pzinemanas/DCASE-models/releases',
packages=setuptools.find_packages(),
install_requires=[
'numpy>=1.1',
'pandas>=0.25',
'SoundFile>=0.1',
'PyYAML>=5.0',
'librosa>=0.7',
'scikit-learn>=0.20',
'wget>=3.0',
'sox<1.4',
'sed_eval>=0.2',
],
extras_require={
'keras_tf': ['tensorflow<1.14', 'keras==2.2.4'],
'keras_tf_gpu': ['tensorflow-gpu<1.14', 'keras==2.2.4'],
'tf2': ['tensorflow>2.0'],
'openl3': ['openl3==0.3.1'],
'autopool': ['autopool==0.1.0'],
'docs': ['numpydoc', 'sphinx!=1.3.1', 'sphinx_rtd_theme'],
'tests': ['pytest >= 5.4.3', 'pytest-cov >= 2.11.1'],
'visualization': [
'plotly==4.5.0',
'dash==1.8.0',
'dash_bootstrap_components==0.8.1',
'dash_audio_components==1.2.0',
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)