Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 243 Bytes

File metadata and controls

19 lines (14 loc) · 243 Bytes

Contributing

Setup

python -m venv .venv
. .venv/bin/activate
python -m pip install -U pip
python -m pip install -e ".[dev]"

Quality gates

python -m ruff check .
python -m mypy --strict src
python -m pytest