Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 671 Bytes

CONTRIBUTING.md

File metadata and controls

24 lines (15 loc) · 671 Bytes

Contributor Guide

Project Conventions

  • Source code formatting: use black. A recipe for running it is provided in the Makefile: just make format.

Development setup

  • Set up a Python virtual environment with python -m venv venv at the root of this project.
  • Run make dev to install the project in editable mode and install dependencies.
$ python -m venv venv
$ make dev

The Makefile is already configured to use Python from the virtual environment venv; for running other commands, activate it using source venv/bin/activate.