mirror of https://github.com/coqui-ai/TTS.git
Requirements change
This commit is contained in:
parent
62054da8f1
commit
5d7338ddf6
|
@ -1,3 +1,5 @@
|
||||||
|
numpy
|
||||||
|
lws
|
||||||
torch>=0.4.0
|
torch>=0.4.0
|
||||||
librosa
|
librosa
|
||||||
inflect
|
inflect
|
||||||
|
|
10
setup.py
10
setup.py
|
@ -63,27 +63,29 @@ setup(name='TTS',
|
||||||
version=version,
|
version=version,
|
||||||
url='https://github.com/mozilla/TTS',
|
url='https://github.com/mozilla/TTS',
|
||||||
description='Text to Speech with Deep Learning',
|
description='Text to Speech with Deep Learning',
|
||||||
|
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
cmdclass={
|
cmdclass={
|
||||||
'build_py': build_py,
|
'build_py': build_py,
|
||||||
'develop': develop,
|
'develop': develop,
|
||||||
},
|
},
|
||||||
|
setup_requires=[
|
||||||
|
"numpy"
|
||||||
|
],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"numpy",
|
|
||||||
"scipy",
|
"scipy",
|
||||||
|
"torch == 0.4.0",
|
||||||
"librosa",
|
"librosa",
|
||||||
"torch >= 0.4.0",
|
|
||||||
"unidecode",
|
"unidecode",
|
||||||
"tensorboardX",
|
"tensorboardX",
|
||||||
"matplotlib",
|
"matplotlib",
|
||||||
"Pillow",
|
"Pillow",
|
||||||
"flask",
|
"flask",
|
||||||
"lws"
|
"lws",
|
||||||
],
|
],
|
||||||
extras_require={
|
extras_require={
|
||||||
"bin": [
|
"bin": [
|
||||||
"tqdm",
|
"tqdm",
|
||||||
"tensorboardX",
|
|
||||||
"requests",
|
"requests",
|
||||||
],
|
],
|
||||||
})
|
})
|
Loading…
Reference in New Issue