Skip to content
Snippets Groups Projects
Commit a83d6268 authored by pjm363 (Philip Monaco)'s avatar pjm363 (Philip Monaco)
Browse files

Merge branch '18-patch-module-issues' into 'main'

patch setup.py installation and update readme

Closes #18

See merge request pjm363/why-senior-project!8
parents e82d1e1f 0731ebfd
No related branches found
No related tags found
No related merge requests found
Pipeline #1765 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