Thanks for wanting to help out!
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
Run the test suite
pytest -vvra
Run linting
black --check src
Make sure the above test is successful, then make a pull-request on GitHub.