-
Notifications
You must be signed in to change notification settings - Fork 23
/
pb_tool.cfg
47 lines (37 loc) · 1.57 KB
/
pb_tool.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Configuration file for plugin builder tool
# Sane defaults for your plugin generated by the Plugin Builder are
# already set below.
#
# As you add Python source files and UI files to your plugin, add
# them to the appropriate [files] section below.
[plugin]
# Name of the plugin. This is the name of the directory that will
# be created when deployed
name: DEMto3D
# Full path to where you want your plugin directory copied. If empty,
# the QGIS default path will be used. Don't include the plugin name in
# the path.
plugin_path:
[files]
# Python files that should be deployed with the plugin
python_files: DEMto3D.py plugin_upload.py resources.py resources_rc.py __init__.py
# The main dialog file that is loaded (not compiled)
main_dialog:
# Other ui files for your dialogs (these will be compiled)
compiled_ui_files: DEMto3D_Dialog/SelectLayer_dialog_base.ui DEMto3D_Dialog/DEMto3D_dialog_base.ui
# Resource file(s) that will be compiled
resource_files: resources.qrc
# Other files required for the plugin
extras: metadata.txt
# Other directories to be deployed with the plugin.
# These must be subdirectories under the plugin directory
extra_dirs: DEMto3D_Dialog model_builder icons i18n
# ISO code(s) for any locales (translations), separated by spaces.
# Corresponding .ts files must exist in the i18n directory
locales: DEMto3D_es.ts DEMto3D_fr.ts
# Uncomment the following to include help in the deployment
# [help]
# # the built help directory that should be deployed with the plugin
# dir: help/build/html
# # the name of the directory to target in the deployed plugin
# target: help