First off, thanks for taking the time to contribute! 🎉
Fork the repository, clone it and implement your contribution.
Setup:
- We use poetry, make sure it is installed:
pip install poetry
- Install dependencies by running:
poetry install
Requirements:
- Our project follows the black code style. Make sure your code is formatted accordingly.
- Please add meaningful docstring for your functions and annotate types
- Please add meaningful tests for your contribution in
/tests
and make sure all tests are passing by runningpython -m pytest
Once done, create a Pull Request to integrate the code into our project!