You are more than welcome to contribute this project! Please use the issue tracker, or email to reach out and discuss your ideas.
If you are contributing new code, then
- First, fork the repository and create your own branch. Commit your changes to this branch.
- In your commit, please include a test case that demonstrates that your
contribution works as expected using
pytest
. Having a test case will make it easier to review your code and therefore lead to your pull request being approved faster. Please also usepylint
to check for issues. During development it is usually simplest to disable reports viapylint my_feature.py --reports=n
and then enable again once all issues have been corrected. Make sure that you test all parts of your code using a coverage tool such aspy-cov
. - Update CONTRIBUTORS to make sure you get credit for your contribution.
- Update README to explain how to use your feature.
- Make all your commits to your feature branch and check that all tests pass. Then go ahead and submit a pull request!