| 12345678910111213141516171819202122232425262728293031323334353637 |
- # -*- coding: utf-8 -*-
- """
- /***************************************************************************
- MnCheck
- A QGIS plugin
- Contrôle des données FTTH format MN
- Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
- -------------------
- begin : 2018-12-07
- copyright : (C) 2018 by Manche Numérique 2019
- email : olivier.massot@manchenumerique.fr
- 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
- HERE = os.path.abspath(os.path.normpath(os.path.join(__file__, os.pardir)))
- sys.path.insert(0, HERE)
- sys.path.insert(0, os.path.join(HERE, "ext"))
- # noinspection PyPep8Naming
- def classFactory(iface): # pylint: disable=invalid-name
- """Load MnCheck class from file MnCheck.
- """
- from main import MnCheck # @UnresolvedImport
- return MnCheck(iface)
|