Thanks for being interested in contributing to this project!
Clone this repo to your local machine and install the dependencies.
poetry install
Feel free to enhance the existing functions. Please try not to introduce breaking changes.
There are some notes for adding new functions
- Before you start working, it's better to open an issue to discuss first.
- The implementation should be placed under
libprocess
docs/ - the API documentation
libprocess/ - the Python package
Use Black to detect code style issues and fix the issues before committing.
The steps to publish the package:
- Bump the version in
pyproject.toml
. - create a new tag for the version with
git tag v*.*.*
. - push the tag to Github with
git push origin v*.*.*
, which will trigger the Github workflow at.github/workflow/publish-to-pypi.yml
to automatically publish the package to PyPI.
Thank you again for being interested in this project! You are awesome!