Skip to content
Snippets Groups Projects
pb_tool.cfg 1.56 KiB
Newer Older
  • Learn to ignore specific revisions
  • # 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 in C:/.qgis2/python/plugins
    
    name: timeseriesviewerplugin
    
    
    [files]
    # Python  files that should be deployed with the plugin
    # BJ: root dir only
    
    Benjamin Jakimow's avatar
    Benjamin Jakimow committed
    python_files:
    
    Benjamin Jakimow's avatar
    Benjamin Jakimow committed
        __init__.py
    
    
    # The main dialog file that is loaded (not compiled)
    # BJ: we load all *ui files during runtime
    main_dialog: 
    
    # Other ui files for your dialogs (these will be compiled)
    # BJ: we load all *ui files during runtime
    compiled_ui_files:
    
    # Resource file(s) that will be compiled
    # BJ: we have to do this externally, as our resource file is not in the root folder
    # change in future versions?
    resource_files:
        timeseriesviewer/ui/resources.qrc
    
    
    # Other files required for the plugin
    extras:
        metadata.txt
        LICENSE.txt
        LICENSE.md
        README.md
    
    benjamin.jakimow@geo.hu-berlin.de's avatar
    benjamin.jakimow@geo.hu-berlin.de committed
        CHANGES.txt
    
        contributors.txt
    
    # Other directories to be deployed with the plugin.
    # These must be subdirectories under the plugin directory
    extra_dirs:
        timeseriesviewer
    
    
    # ISO code(s) for any locales (translations), separated by spaces.
    # Corresponding .ts files must exist in the i18n directory
    locales: 
    
    [help]
    # the built help directory that should be deployed with the plugin
    
    Benjamin Jakimow's avatar
    Benjamin Jakimow committed
    dir:doc/build/html
    
    
    # the name of the directory to target in the deployed plugin