-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy path__init__.py
More file actions
41 lines (37 loc) · 1.81 KB
/
Copy path__init__.py
File metadata and controls
41 lines (37 loc) · 1.81 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
36
37
38
39
40
41
# -*- 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 sys
from pathlib import Path
from qgis.core import QgsApplication
# Keep QPIP deps importable if QPIP is disabled/uninstalled (QPIP removes this path on unload).
_profile_path = QgsApplication.qgisSettingsDirPath()
_py_ver = f"{sys.version_info.major}.{sys.version_info.minor}"
_deps_path = Path(_profile_path) / "python" / "dependencies" / _py_ver
_deps_path_str = str(_deps_path)
if _deps_path.is_dir() and _deps_path_str not in sys.path:
sys.path.insert(0, _deps_path_str)
sys.path_importer_cache.clear()
# 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)