I would be very happy about any kind of contributions that help to improve and extend the functionality of PyProt.
- If you don't have a GitHub account yet, please create one to contribute to this project.
- Please submit a ticket for your issue to discuss the fix or new feature before too much time and effort is spent for the implementation.
- Fork the
pyprotrepository.
- Please avoid working directly on the master branch but create a new feature branch (
git branch new_feature,git checkout new_feature) - When you make changes, please provide meaningful
commitmessages. - If it is a new feature, please update the documentation.
- Make an entry in the
CHANGELOG.mdfile. - Add tests to the
pyprot/testsdirectory. - Run all tests (e.g., via
nosetestsorpytest). - Push your changes to a topic branch and submit a
pull request.
- The API documentation was generated via
pdocand can be updated from the mainpyprotlocation viapdoc ./pyprot --html --html-dir ./docs/api --overwrite