diff --git a/.gitignore b/.gitignore
index bf6da016aac79404fe50a8cb363fdb3435ee28c6..ead4c2944af35c4eedde597db7858442336a4d48 100644
--- a/.gitignore
+++ b/.gitignore
@@ -107,7 +107,7 @@ venv.bak/
 # mypy
 .mypy_cache/
 *.stats
-*.txt
+#*.txt
 *.1
 *.2
 *.3
diff --git a/README.md b/README.md
index 30a55d74c0add725c14b37df61226ef0cf17807a..77176827e018a3284734bb44da51a1fb3d2df695 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,15 @@
 # WZL-MQTT
+Current stable version: 1.3.0
 
-**TODO**: document
\ No newline at end of file
+## Installation
+1. Install the *WZL-Utilities* dependency. Download the wheel file at of the [wzl-utilities](https://git-ce.rwth-aachen.de/wzl-mq-ms/forschung-lehre/utilities) package and install it with pip. 
+2. Download the [wzl-mqtt](https://git-ce.rwth-aachen.de/wzl-mq-ms/forschung-lehre/digital-mars/mqtt) package.
+3. Install the wheel file and other dependencies via pip.
+
+## Usage
+For ussage of the provided MQTT-Publisher and -Subscriber clients, please refer to the *sample* file in the corresponding folder.
+If there are any question contact [Matthias Bodenbenner](mailto:m.bodenbenner@wzl.rwth-aachen.de). 
+
+## Recent changes
+1.3.0
+- added wzl-utilities dependency by sourcing out logging functionality
\ No newline at end of file
diff --git a/dist/WZL_MQTT-1.3.0-py3-none-any.whl b/dist/WZL_MQTT-1.3.0-py3-none-any.whl
new file mode 100644
index 0000000000000000000000000000000000000000..daf76849f02e84d715d36487fff8c9fc2efba7a5
Binary files /dev/null and b/dist/WZL_MQTT-1.3.0-py3-none-any.whl differ
diff --git a/dist/wzl_mqtt-1.2.0-py3-none-any.whl b/dist/wzl_mqtt-1.2.0-py3-none-any.whl
deleted file mode 100644
index 28d6ffd23e342e7972e8316012e5d24e42df39af..0000000000000000000000000000000000000000
Binary files a/dist/wzl_mqtt-1.2.0-py3-none-any.whl and /dev/null differ
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000000000000000000000000000000000000..2db309f6701ba2b5606f22eb35116e06ddf7994a
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,4 @@
+certifi==2020.4.5.2
+paho-mqtt==1.5.0
+wincertstore==0.2
+wzl-utilities==1.0.0
diff --git a/setup.py b/setup.py
index a369a8c55a7bf5cd9b7520ecadc016f6de3e8e84..1e4061a9709d63aebb0f0112b7ca1bf46673ef29 100644
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@ setup(name='WZL-MQTT',
       author_email='m.bodenbenner@wzl.rwth-aachen.de',
       description='Small library containing an MQTT publisher and receiver.',
       package_dir={'wzl': 'src'},
-      packages=['wzl.utilities,', 'paho-mqtt'],
+      packages=['wzl.mqtt'],
       # long_description=open('./README.md').read(),
-      install_requires=['paho-mqtt'],
+      install_requires=['paho-mqtt', 'wzl-utilities'],
       zip_safe=False)