Contributing#

The goal here is to make contributing to bocoel as painless as possible.

Feel free to reach out and I’ll try to respond as soon as possible!

Development installation#

First, clone and navigate into the project:

git clone https://github.com/rentruewang/bocoel
cd bocoel/

Alternatively, use ssh:

git clone [email protected]:rentruewang/bocoel
cd bocoel/

I’m using PDM in this project for dependency management. To install all dependencies (including development dependencies) with pdm, run

pdm install -G:all

Alternatively, use of pip is also allowed (although might be less robust due to lack of version solving)

pip install -e .

Both commands perform an editable installation.