qgis_layout_plugin/plot_layout/__init__.py

37 lines
1.6 KiB
Python

# -*- coding: utf-8 -*-
"""
/***************************************************************************
PlotInLayout
A QGIS plugin
test for adding plot in layout
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
-------------------
begin : 2021-07-13
copyright : (C) 2021 by Champs-Libres
email : julien.minet@champs-libres.coop
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.
"""
# noinspection PyPep8Naming
def classFactory(iface): # pylint: disable=invalid-name
"""Load PlotInLayout class from file PlotInLayout.
:param iface: A QGIS interface instance.
:type iface: QgsInterface
"""
#
from .plot_layout import PlotInLayout
return PlotInLayout(iface)