diff --git a/README.md b/README.md
index 313c7525..92c2ee52 100644
--- a/README.md
+++ b/README.md
@@ -47,7 +47,7 @@ Please use our dedicated channels for questions and discussion. Help is much mor
| 🚀 **Released Models** | [TTS Releases](https://github.com/coqui-ai/TTS/releases) and [Experimental Models](https://github.com/coqui-ai/TTS/wiki/Experimental-Released-Models)|
| 🖥️ **Demo Server** | [TTS/server](https://github.com/coqui-ai/TTS/tree/master/TTS/server)|
| 🤖 **Synthesize speech** | [TTS/README.md](https://github.com/coqui-ai/TTS#example-synthesizing-speech-on-terminal-using-the-released-models)|
-| 🛠️ **Implementing a New Model** | [TTS/Wiki][https://github.com/coqui-ai/TTS/wiki/Implementing-a-New-Model-in-%F0%9F%90%B8TTS]|
+| 🛠️ **Implementing a New Model** | [TTS/Wiki](https://github.com/coqui-ai/TTS/wiki/Implementing-a-New-Model-in-%F0%9F%90%B8TTS)|
## 🥇 TTS Performance

diff --git a/TTS/__init__.py b/TTS/__init__.py
index e69de29b..8dee4bf8 100644
--- a/TTS/__init__.py
+++ b/TTS/__init__.py
@@ -0,0 +1 @@
+from ._version import __version__
diff --git a/TTS/_version.py b/TTS/_version.py
new file mode 100644
index 00000000..d7d14b11
--- /dev/null
+++ b/TTS/_version.py
@@ -0,0 +1 @@
+__version__ = '0.0.13.2'
diff --git a/setup.py b/setup.py
index abed43a2..a68b09e0 100644
--- a/setup.py
+++ b/setup.py
@@ -4,6 +4,7 @@ import os
import subprocess
import sys
from distutils.version import LooseVersion
+from TTS._version import __version__
import numpy
import setuptools.command.build_py
@@ -18,7 +19,7 @@ if LooseVersion(sys.version) < LooseVersion("3.6") or LooseVersion(sys.version)
)
-version = '0.0.13.2'
+version = __version__
cwd = os.path.dirname(os.path.abspath(__file__))
class build_py(setuptools.command.build_py.build_py): # pylint: disable=too-many-ancestors