From 0731ebfda0fdd53934dca903bd2035e6b16e663a Mon Sep 17 00:00:00 2001
From: Philip Monaco <philmonaco34@gmail.com>
Date: Fri, 15 Apr 2022 13:46:38 -0400
Subject: [PATCH] patch setup.py installation and update readme
---
README.md | 14 +++++++++++++-
setup.py | 2 +-
2 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 28cecea..c326ff0 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 be52ee3..4f980a6 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
--
GitLab