diff --git a/README.md b/README.md
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..cd3dbddd7d3f5020a8f6ac18dac1218ea141cfd4 100644
--- a/README.md
+++ b/README.md
@@ -0,0 +1,43 @@
+# bbbmon
+
+A small python based CLI utility to monitor BigBlueButton-Usage. 
+
+## Installation
+
+The easiest way to install bbbmon is to install it from the Python Package Index (PyPi). This project uses [python poetry](https://python-poetry.org/) for dependency management, so you could also run it without installing the package system wide, see instructions below.
+
+## Install with pip3
+
+```bash
+sudo pip3 install bbbmon --upgrade
+```
+
+Then run with:
+
+```bash
+bbbmon
+```
+
+## Run with poetry (without pip)
+
+Clone the repo:
+
+```bash
+git clone https://code.hfbk.net/bbb/bbbmon.git
+```
+
+Make sure you have poetry installed. Install instruction for poetry can be [found here](https://python-poetry.org/docs/#installation).
+From inside the project directory run:
+
+```bash
+poetry install
+```
+
+Run bbbmon with:
+
+```bash
+poetry run bbbmon
+```
+
+For bbbmon to run you need to have a `bbbmon.properties` file at the path specified. In this file there should be your servers secret and the server URL. You can find this secret on your server in the file `/usr/share/bbb-web/WEB-INF/classes/bigbluebutton.properties` (look for a line starting with `securitySalt=` and copy it to). If in doubt just follow the instructions the CLI gives you.
+
diff --git a/bbbmon/bbbmon.py b/bbbmon/bbbmon.py
index ce514989b21479ab9ac68481aea849aca90559ed..56fe7e7521fffd9d00ae3e40ebe4722ae79f1ad3 100755
--- a/bbbmon/bbbmon.py
+++ b/bbbmon/bbbmon.py
@@ -299,7 +299,4 @@ def init_variables() -> Optional[Tuple[Secret, Url]]:
 
 def main():
     secret, bbb_url = init_variables()
-    print_overview(secret, bbb_url)
-
-if __name__ == "__main__":
-    main()
\ No newline at end of file
+    print_overview(secret, bbb_url)
\ No newline at end of file
diff --git a/pyproject.toml b/pyproject.toml
index 3c6fbe1153fa0ef78ab691ecbe92dea80414e5ec..9a6cd6221c2aaf9a55a9a965047bac8425187141 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,9 +1,23 @@
 [tool.poetry]
 name = "bbbmon"
-version = "0.1.0"
+version = "0.1.5"
 description = "A small CLI utility to monitor bbb usage"
 authors = ["David Huss <david.huss@hfbk-hamburg.de>"]
-license = "MIT"
+maintainers = ["David Huss <david.huss@hfbk-hamburg.de>"]
+license = "GPLv3"
+readme = "README.md"
+classifiers = [
+    "Development Status :: 3 - Alpha",
+    "Environment :: Console",
+    "Intended Audience :: System Administrators",
+    "License :: Free for non-commercial use",
+    "License :: Free For Educational Use",
+    "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
+    "Natural Language :: English",
+    "Programming Language :: Python :: 3.6",
+    "Topic :: System :: Monitoring",
+    "Topic :: Communications :: Conferencing"
+]
 
 [tool.poetry.dependencies]
 python = "^3.5"
@@ -14,8 +28,7 @@ appdirs = "^1.4.3"
 pytest = "^5.2"
 
 [tool.poetry.scripts]
-# bbbmon = { path = "bbbmon.py" }
-run = "bbbmon.bbbmon:main"
+bbbmon = "bbbmon.bbbmon:main"
 
 [build-system]
 requires = ["poetry>=0.12"]