from pychrysalide.features import * from .panel import HelloPanel class HelloPlugin(PluginModule): """Simple demo plugin to build a GUI panel.""" def __init__(self): """Initialize the plugin for Chrysalide.""" interface = { 'name' : 'HelloPanel', 'desc' : 'Say hello in the main GUI', 'version' : '0.1', 'actions' : ( ) } super(HelloPlugin, self).__init__(**interface) p = HelloPanel() register_panel(p);