mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
- ability to support custom repositories - better error handling git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7909 c8812cc2-4d05-0410-92ff-de0c093fc19c
15 lines
310 B
Python
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)
|