Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 508 Bytes

CONTRIBUTING.md

File metadata and controls

34 lines (27 loc) · 508 Bytes

Contribution guide

Thanks for wanting to help out!

Development environment set-up

Create a new setup.py:

from setuptools import setup

setup()

Install package

pip install -e .

Install package testing requirements

pip install -r tests/requirements.txt black

Testing

Run the test suite

pytest -vvra

Run linting

black --check src

Submitting changes

Make sure the above test is successful, then make a pull-request on GitHub.