mirror of
https://github.com/wassname/TTS.git
synced 2026-09-09 11:16:00 +08:00
Mass refactoring
This commit is contained in:
@@ -19,7 +19,7 @@ args, unknown_args = parser.parse_known_args()
|
||||
# Remove our arguments from argv so that setuptools doesn't see them
|
||||
sys.argv = [sys.argv[0]] + unknown_args
|
||||
|
||||
version = '0.0.3'
|
||||
version = '0.0.4'
|
||||
|
||||
# Adapted from https://github.com/pytorch/pytorch
|
||||
cwd = os.path.dirname(os.path.abspath(__file__))
|
||||
@@ -112,6 +112,8 @@ setup(
|
||||
name='TTS',
|
||||
version=version,
|
||||
url='https://github.com/mozilla/TTS',
|
||||
author='Eren Gölge',
|
||||
author_email='egolge@mozilla.com',
|
||||
description='Text to Speech with Deep Learning',
|
||||
license='MPL-2.0',
|
||||
entry_points={
|
||||
@@ -119,11 +121,7 @@ setup(
|
||||
'tts-server = TTS.server.server:main'
|
||||
]
|
||||
},
|
||||
package_dir={'': 'tts_namespace'},
|
||||
packages=find_packages('tts_namespace'),
|
||||
package_data={
|
||||
'TTS': package_data,
|
||||
},
|
||||
packages=find_packages(include=['TTS*']),
|
||||
project_urls={
|
||||
'Documentation': 'https://github.com/mozilla/TTS/wiki',
|
||||
'Tracker': 'https://github.com/mozilla/TTS/issues',
|
||||
|
||||
Reference in New Issue
Block a user