__init__.txt 1.4 KB

1234567891011121314151617181920212223242526272829
  1. # -*- coding: utf-8 -*-
  2. """
  3. /***************************************************************************
  4. {0}
  5. {1}
  6. -------------------
  7. released : {2}
  8. author : (C) {3} by {4}
  9. email : {5}
  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 {6} class from file {6} -- load classname (plugin name)
  26. from .{6} import {6} # -- from filename import classname
  27. return {6}(iface) # -- import classname