-
-
Notifications
You must be signed in to change notification settings - Fork 241
/
setup.py
38 lines (34 loc) · 853 Bytes
/
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
import os
import platform
from setuptools import setup
tensorflow = 'tensorflow'
if platform.system() == 'Darwin' and platform.processor() == 'arm':
tensorflow = 'tensorflow-macos'
# https://github.com/grpc/grpc/issues/25082
os.environ['GRPC_PYTHON_BUILD_SYSTEM_OPENSSL'] = '1'
os.environ['GRPC_PYTHON_BUILD_SYSTEM_ZLIB'] = '1'
install_requires = [
'numpy',
tensorflow,
'natsort',
'librosa',
'dill',
'python_speech_features',
'tqdm',
'click',
'pandas',
'matplotlib',
'keras',
'numba'
]
setup(
name='deep-speaker',
version='1.0',
description='Deep Speaker',
author='Philippe Remy',
license='MIT',
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
packages=['deep_speaker'],
install_requires=install_requires
)