-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path__init__.py
More file actions
27 lines (20 loc) · 714 Bytes
/
__init__.py
File metadata and controls
27 lines (20 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""
This script initializes the plugin, making it known to QGIS.
ScriptRunner - A QGIS plugin that runs scripts to automate QGIS tasks.
Date: 2012-01-27
Copyright: (C) 2012-2013 by GeoApt LLC
Email: [email protected]
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
"""
def version():
return "2.0.1"
def classFactory(iface):
"""
Load ScriptRunner class from file ScriptRunner, passing
it the qgis.utils.iface object.
"""
from scriptrunner import ScriptRunner
return ScriptRunner(iface)