diff --git a/README.md b/README.md
index 28ceceab84f1dd9329460e4e7122bc4be787f62b..c326ff0fa5e44567831609ce559ec2a4ab823a80 100644
--- a/README.md
+++ b/README.md
@@ -44,7 +44,19 @@ Install via [installer](https://llvm.org/builds/) or using chocolatey via.
 ```bash
 choco install llvm
 ```
-
+Install WHY using pip:
+```bash
+pip install -e .
+```
+## Running examples
+From the `examples` directory
+```bash
+bokeh serve --show <name of app folder>
+```
+For a developer option the `--dev` flag can be used to auto refresh server from IDE.
+```bash
+bokeh serve --show <name of app folder> --dev
+```
 ## Building API Documentation
 
 To build the API Documentation in HTML format for local browsing, execute the following from the root of the repository.
diff --git a/setup.py b/setup.py
index be52ee36668dd2dd85a5a0ccfe10f4327954935f..4f980a629484382c08fe87e6cbec9422ee93120c 100644
--- a/setup.py
+++ b/setup.py
@@ -115,6 +115,6 @@ setup(
     extras_require=requires_map,
     include_package_data=True,
     zip_safe=False,
-    package_data={"WHY": ["py.typed"]},
+    package_data={"src": ["py.typed"]},
     entry_points={},
 )
\ No newline at end of file