|
9 | 9 |
|
10 | 10 | if LooseVersion(sys.version) < LooseVersion("3.6"):
|
11 | 11 | raise RuntimeError(
|
12 |
| - "Tensorflow TTS requires python >= 3.6, " |
| 12 | + "TensorFlow TTS requires python >= 3.6, " |
13 | 13 | "but your Python version is {}".format(sys.version)
|
14 | 14 | )
|
15 | 15 |
|
|
22 | 22 | # TODO(@dathudeptrai) update requirement if needed.
|
23 | 23 | requirements = {
|
24 | 24 | "install": [
|
25 |
| - "tensorflow-gpu==2.3.1", |
| 25 | + "tensorflow-gpu==2.6.0", |
26 | 26 | "tensorflow-addons>=0.10.0",
|
27 | 27 | "setuptools>=38.5.1",
|
28 | 28 | "huggingface_hub==0.0.8",
|
|
73 | 73 | name="TensorFlowTTS",
|
74 | 74 | version="0.0",
|
75 | 75 | url="https://github.com/tensorspeech/TensorFlowTTS",
|
76 |
| - author="Minh Nguyen Quan Anh, Eren Gölge, Kuan Chen, Dawid Kobus, Takuya Ebata, Trinh Le Quang, Yunchao He, Alejandro Miguel Velasquez", |
| 76 | + author="Minh Nguyen Quan Anh, Alejandro Miguel Velasquez, Dawid Kobus, Eren Gölge, Kuan Chen, Takuya Ebata, Trinh Le Quang, Yunchao He", |
77 | 77 |
|
78 |
| - description="TensorFlowTTS: Real-Time State-of-the-art Speech Synthesis for Tensorflow 2", |
| 78 | + description="TensorFlowTTS: Real-Time State-of-the-art Speech Synthesis for TensorFlow 2", |
79 | 79 | long_description=open(os.path.join(dirname, "README.md"), encoding="utf-8").read(),
|
80 | 80 | long_description_content_type="text/markdown",
|
81 | 81 | license="Apache-2.0",
|
|
88 | 88 | classifiers=[
|
89 | 89 | "Programming Language :: Python :: 3.6",
|
90 | 90 | "Programming Language :: Python :: 3.7",
|
| 91 | + "Programming Language :: Python :: 3.8", |
91 | 92 | "Intended Audience :: Science/Research",
|
92 | 93 | "Operating System :: POSIX :: Linux",
|
93 | 94 | "License :: OSI Approved :: Apache Software License",
|
|
0 commit comments