flaschengeist/docs/plugin_development.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
328 B
Markdown
Raw Normal View History

# Plugin Development
## File Structure
- your_plugin/
- __init__.py
- ...
- ...
- setup.cfg
The basic layout of a plugin is quite simple, you will only need the `setup.cfg` or `setup.py` and
the package containing your plugin code, at lease a `__init__.py` file with your `Plugin` class.