mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
14 lines
352 B
Python
14 lines
352 B
Python
|
def name():
|
||
|
return "SEXTANTE"
|
||
|
def description():
|
||
|
return "SEXTANTE Geoprocessing Platform for QGIS"
|
||
|
def version():
|
||
|
return "Version 1.0.7"
|
||
|
def icon():
|
||
|
return "icon.png"
|
||
|
def qgisMinimumVersion():
|
||
|
return "1.0"
|
||
|
def classFactory(iface):
|
||
|
from sextante.SextantePlugin import SextantePlugin
|
||
|
return SextantePlugin(iface)
|