-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (55 loc) · 1.36 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
"""Info about project and requirements."""
from setuptools import find_packages
from setuptools import setup
# strict
# 'ffmpeg==4.3',
# requirements = [
# 'pandas==1.0.3',
# 'pydub==0.23.1',
# 'pillow==7.1.1',
# 'tensorflow-gpu==1.14.0',
# 'numpy==1.19',
# 'scikit-learn==0.21.3',
# 'scipy==1.5.3',
# 'keras==2.3.1',
# 'matplotlib==3.1.1',
# 'pydub==0.23.1',
# 'pillow==7.1.1',
# 'pyyaml==5.3.1',
# 'sqlite==3.33',
# 'pysoundfile==0.10.2',
# 'resampy==0.2.2',
# ]
# #flexible
requirements = [
'pandas>=1.0.3',
# 'pydub>=0.23.1',
# 'pillow>=7.1.1',
# 'tensorflow-gpu>=1.14.0',
# 'numpy>=1.19',
# 'scikit-learn>=0.21.3',
# 'scipy>=1.5.3',
# 'keras>=2.3.1',
# 'matplotlib>=3.1.1',
# 'pydub>=0.23.1',
# 'pillow>=7.1.1',
# 'pyyaml>=5.3.1',
# 'sqlite>=3.33',
# 'pysoundfile>=0.10.2',
# 'resampy>=0.2.2',
]
setup(name='nna',
version='0.1.0',
packages=find_packages('src'),
package_dir={'': 'src'},
url='https://github.com/speechLabBcCuny/nnaAudiosetClassification',
author='Enis Berk Çoban',
author_email='me@enisberk.com',
description='NNA project tools',
install_requires=requirements,
extras_require={'dev': [
'pytest',
'pytest-pep8',
'pytest-cov',
'mypy',
]})