-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__init__.py
31 lines (24 loc) · 880 Bytes
/
__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
# -*- coding: utf-8 -*-
"""
/***************************************************************************
Chole
A QGIS plugin
description
-------------------
begin : 2017-10-17
author : Jean-Charles Naud, Olivier Bedel, Hugues Boussard
email : hugues.boussard at inra.fr
***************************************************************************/
This script initializes the plugin, making it known to QGIS.
"""
__author__ = 'Jean-Charles Naud/Alkante'
__date__ = '2017-10-17'
# noinspection PyPep8Naming
def classFactory(iface): # pylint: disable=invalid-name
"""Load Chole class from file Chole.
:param iface: A QGIS interface instance.
:type iface: QgsInterface
"""
#
from .chloe import CholePlugin
return CholePlugin()