-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__init__.py
More file actions
35 lines (27 loc) · 1.01 KB
/
__init__.py
File metadata and controls
35 lines (27 loc) · 1.01 KB
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
28
29
30
31
32
33
34
35
#! python3
"""LoopStructural QGIS plugin package.
Utilities and metadata for the LoopStructural QGIS plugin.
"""
# ----------------------------------------------------------
# Copyright (C) 2015 Martin Dobias
# ----------------------------------------------------------
# Licensed under the terms of GNU GPL 2
#
# 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 classFactory(iface):
"""Load the plugin class.
Parameters
----------
iface : QgsInterface
A QGIS interface instance provided by QGIS when loading plugins.
Returns
-------
LoopstructuralPlugin
An instance of the plugin class initialized with `iface`.
"""
from .plugin_main import LoopstructuralPlugin
return LoopstructuralPlugin(iface)