Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 417 Bytes

CONTRIBUTING.md

File metadata and controls

31 lines (21 loc) · 417 Bytes

Setting up the environment

create a virtual environment:

python -m venv ./.venv

active the virtual environment:

source ./.venv/bin/activate

We use Poetry to manage dependencies, you can install it by:

python -m pip install poetry 

And then install dependencies:

poetry install

Pre Commit

pre-commit install