Skip to content
Snippets Groups Projects
Commit 0731ebfd authored by Philip Monaco's avatar Philip Monaco
Browse files

patch setup.py installation and update readme

parent ef21755e
Branches
No related tags found
No related merge requests found
Pipeline #1628 passed
......@@ -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.
......
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment