__init__.py 1.5 KB

1234567891011121314151617181920212223242526272829
  1. # -*- coding: utf-8 -*-
  2. """
  3. /***************************************************************************
  4. easyPlugin
  5. Plugin which creates a simple QGIS plugin templates ready for install, editing and testing
  6. -------------------
  7. released : 2024-02-28
  8. author : (C) 2024 by Pavel Pereverzev
  9. email : pavelpereverzev93@gmail.com
  10. made in : easyPlugin by Pavel Pereverzev
  11. credits to : Gary Sherman and Alexandre Neto
  12. ***************************************************************************/
  13. /***************************************************************************
  14. * *
  15. * This program is free software; you can redistribute it and/or modify *
  16. * it under the terms of the GNU General Public License as published by *
  17. * the Free Software Foundation; either version 2 of the License, or *
  18. * (at your option) any later version. *
  19. * *
  20. ***************************************************************************/
  21. This script initializes the plugin, making it known to QGIS.
  22. """
  23. from __future__ import absolute_import
  24. def classFactory(iface):
  25. # load easyPlugin class from file easyPlugin -- load classname (plugin name)
  26. from .easyPlugin import easyPlugin # -- from filename import classname
  27. return easyPlugin(iface) # -- import classname