mirror of https://github.com/coqui-ai/TTS.git
more setup.py
This commit is contained in:
parent
1e6f5113d5
commit
ea84b2997b
7
setup.py
7
setup.py
|
@ -62,8 +62,15 @@ 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',
|
||||||
|
license='MPL-2.0',
|
||||||
package_dir={'TTS': '.'},
|
package_dir={'TTS': '.'},
|
||||||
packages=['TTS'] + ['TTS.' + pkg for pkg in find_packages()],
|
packages=['TTS'] + ['TTS.' + pkg for pkg in find_packages()],
|
||||||
|
project_urls={
|
||||||
|
'Documentation': 'https://github.com/mozilla/TTS/wiki',
|
||||||
|
'Tracker': 'https://github.com/mozilla/TTS/issues',
|
||||||
|
'Repository': 'https://github.com/mozilla/TTS',
|
||||||
|
'Discussions': 'https://discourse.mozilla.org/c/tts',
|
||||||
|
},
|
||||||
cmdclass={
|
cmdclass={
|
||||||
'build_py': build_py,
|
'build_py': build_py,
|
||||||
'develop': develop,
|
'develop': develop,
|
||||||
|
|
Loading…
Reference in New Issue