pb_tool.cfg 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. #/***************************************************************************
  2. # Atlas
  3. #
  4. # Configuration file for plugin builder tool (pb_tool)
  5. # Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
  6. # -------------------
  7. # begin : 2019-02-15
  8. # copyright : (C) 2019 by jan vrobel
  9. # email : vrobel.jan@seznam.cz
  10. # ***************************************************************************/
  11. #
  12. #/***************************************************************************
  13. # * *
  14. # * This program is free software; you can redistribute it and/or modify *
  15. # * it under the terms of the GNU General Public License as published by *
  16. # * the Free Software Foundation; either version 2 of the License, or *
  17. # * (at your option) any later version. *
  18. # * *
  19. # ***************************************************************************/
  20. #
  21. #
  22. # You can install pb_tool using:
  23. # pip install http://geoapt.net/files/pb_tool.zip
  24. #
  25. # Consider doing your development (and install of pb_tool) in a virtualenv.
  26. #
  27. # For details on setting up and using pb_tool, see:
  28. # http://g-sherman.github.io/plugin_build_tool/
  29. #
  30. # Issues and pull requests here:
  31. # https://github.com/g-sherman/plugin_build_tool:
  32. #
  33. # Sane defaults for your plugin generated by the Plugin Builder are
  34. # already set below.
  35. #
  36. # As you add Python source files and UI files to your plugin, add
  37. # them to the appropriate [files] section below.
  38. [plugin]
  39. # Name of the plugin. This is the name of the directory that will
  40. # be created in .qgis2/python/plugins
  41. name: Atlas
  42. # Full path to where you want your plugin directory copied. If empty,
  43. # the QGIS default path will be used. Don't include the plugin name in
  44. # the path.
  45. plugin_path:
  46. [files]
  47. # Python files that should be deployed with the plugin
  48. python_files: __init__.py Atlas.py Atlas_dockwidget.py
  49. # The main dialog file that is loaded (not compiled)
  50. main_dialog: Atlas_dockwidget_base.ui
  51. # Other ui files for dialogs you create (these will be compiled)
  52. compiled_ui_files:
  53. # Resource file(s) that will be compiled
  54. resource_files: resources.qrc
  55. # Other files required for the plugin
  56. extras: metadata.txt icon.png
  57. # Other directories to be deployed with the plugin.
  58. # These must be subdirectories under the plugin directory
  59. extra_dirs:
  60. # ISO code(s) for any locales (translations), separated by spaces.
  61. # Corresponding .ts files must exist in the i18n directory
  62. locales:
  63. [help]
  64. # the built help directory that should be deployed with the plugin
  65. dir: help/build/html
  66. # the name of the directory to target in the deployed plugin
  67. target: help