mirror of https://github.com/coqui-ai/TTS.git
Add a TTS namespace to all packages in setup.py
This commit is contained in:
parent
549dbba128
commit
52beca60e1
10
setup.py
10
setup.py
|
@ -62,7 +62,8 @@ setup(
|
||||||
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(),
|
package_dir={'TTS': '.'},
|
||||||
|
packages=['TTS'] + ['TTS.' + pkg for pkg in find_packages()],
|
||||||
cmdclass={
|
cmdclass={
|
||||||
'build_py': build_py,
|
'build_py': build_py,
|
||||||
'develop': develop,
|
'develop': develop,
|
||||||
|
@ -79,14 +80,9 @@ setup(
|
||||||
"flask",
|
"flask",
|
||||||
# "lws",
|
# "lws",
|
||||||
"tqdm",
|
"tqdm",
|
||||||
"phonemizer",
|
|
||||||
"soundfile",
|
"soundfile",
|
||||||
],
|
],
|
||||||
dependency_links=[
|
dependency_links=[
|
||||||
'http://github.com/bootphon/phonemizer/tarball/master#egg=phonemizer'
|
'http://github.com/bootphon/phonemizer/tarball/master#egg=phonemizer'
|
||||||
],
|
],
|
||||||
extras_require={
|
)
|
||||||
"bin": [
|
|
||||||
"requests",
|
|
||||||
],
|
|
||||||
})
|
|
||||||
|
|
Loading…
Reference in New Issue