-
Notifications
You must be signed in to change notification settings - Fork 28
/
__init__.py
34 lines (31 loc) · 1.47 KB
/
__init__.py
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
# -*- coding: utf-8 -*-
"""
/***************************************************************************
begin : 2016-01-05
copyright : (C) 2016 by BGEO SL
email : derill@bgeo.es
git sha : $Format:%H$
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
This script initializes the plugin, making it known to QGIS.
"""
import os
import sys
plugin_path = os.path.abspath(os.path.join(os.path.dirname(__file__)))
sys.path.append(plugin_path)
sys.path.append(os.path.join(plugin_path, 'packages'))
# noinspection PyPep8Naming
def classFactory(iface): # pylint: disable=invalid-name
""" Load Giswater class from file giswater.
:param iface: A QGIS interface instance.
:type iface: QgsInterface
"""
from .main import Giswater
return Giswater(iface)