diff --git a/requirements.txt b/requirements.txt index 8a8eb039..37a62760 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,5 @@ +numpy +lws torch>=0.4.0 librosa inflect diff --git a/setup.py b/setup.py index b0f1eae3..4773d00e 100644 --- a/setup.py +++ b/setup.py @@ -63,27 +63,29 @@ setup(name='TTS', version=version, url='https://github.com/mozilla/TTS', description='Text to Speech with Deep Learning', + packages=find_packages(), cmdclass={ 'build_py': build_py, 'develop': develop, }, + setup_requires=[ + "numpy" + ], install_requires=[ - "numpy", "scipy", + "torch == 0.4.0", "librosa", - "torch >= 0.4.0", "unidecode", "tensorboardX", "matplotlib", "Pillow", "flask", - "lws" + "lws", ], extras_require={ "bin": [ "tqdm", - "tensorboardX", "requests", ], }) \ No newline at end of file