Contributing¶
Development setup¶
git clone https://github.com/yourname/leasepool.git
cd leasepool
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
pip install -r docs/requirements.txt
Run tests¶
pytest -q
Run linting¶
ruff check .
Run type checking¶
mypy src/leasepool
Build docs¶
cd docs
make html