wonder b330657fd2 Improvements to plugin installer:
- ability to support custom repositories
- better error handling


git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7909 c8812cc2-4d05-0410-92ff-de0c093fc19c
2008-01-10 14:45:28 +00:00

15 lines
310 B
Python

def name():
return "Plugin installer"
def description():
return "Downloads and installs QGIS python plugins"
def version():
return "Version 0.02"
def classFactory(iface):
# load TestPlugin class from file testplugin.py
from installer_plugin import InstallerPlugin
return InstallerPlugin(iface)