22 lines
355 B
Markdown
22 lines
355 B
Markdown
# Build Instructions
|
|
|
|
Run the following command to build the project:
|
|
|
|
```shell
|
|
python -m build
|
|
```
|
|
|
|
This will create distribution files in the `dist/` directory.
|
|
|
|
Install the built package using pip:
|
|
|
|
```shell
|
|
pip install --no-index dist/docs_harvester-0.1.0-py3-none-any.whl
|
|
```
|
|
|
|
Install in editable mode for development:
|
|
|
|
```shell
|
|
pip install -e .
|
|
```
|