Added package build and develop instructions.

This commit is contained in:
2025-11-09 19:29:09 +01:00
parent c29e0b4e21
commit c3c5f9935c
3 changed files with 30 additions and 8 deletions

21
BUILD.md Normal file
View File

@@ -0,0 +1,21 @@
# 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 .
```