Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 1.02 KB

CONTRIBUTING.rst

File metadata and controls

36 lines (23 loc) · 1.02 KB

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate.

To easily install all the (dev) dependencies use:

poetry install

Some useful Make commands which can be used during development:

clean         Remove all pycache, coverage, ... files in project folder.
format        Run isort and black to autoformat python files.
check         Run isort, black, flake8 and mypy to perform checks.
test          Run pytest for unit and integration testing located in tests folder.
install       Install the package and (dev) dependencies.
docs          Create docs.

Example to clean project folder:

make clean

Note that we adhere to the PEP8 and the numpydoc style guides.