more setup.py

This commit is contained in:
Eren Golge 2019-08-26 15:18:43 +02:00
parent 1e6f5113d5
commit ea84b2997b
1 changed files with 7 additions and 0 deletions

View File

@ -62,8 +62,15 @@ setup(
version=version,
url='https://github.com/mozilla/TTS',
description='Text to Speech with Deep Learning',
license='MPL-2.0',
package_dir={'TTS': '.'},
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={
'build_py': build_py,
'develop': develop,