A central repository for community-contributed plugins for LeanPass.
- Fork this repository.
- Copy the template:
cp plugins/_template.py plugins/your_op_name.py
- Fill in the
PluginInfoat the top of your new file with your details. - Implement your operation using LeanPass and NumPy, and decorate it with
@op(info.name). - Open a Pull Request. Our CI will automatically test that your plugin loads successfully. Once merged, you will automatically appear in the Credits Table below!
Note for LeanPass core maintainers: LeanPass core needs a small plugin_registry.py added to support the @op registration API used here.
Registry will be auto-generated here by CI.