| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- # This file contains metadata for your plugin. Beginning
- # with version 1.8 this is the preferred way to supply information about a
- # plugin. The current method of embedding metadata in __init__.py will
- # be supported until version 2.0
- # This file should be included when you package your plugin.
- # Mandatory items:
- [general]
- name=easyPlugin
- qgisMinimumVersion=3.0
- description=Plugin which creates a simple QGIS plugin templates ready for install, editing and testing
- about=easyPlugin is tool for beginner developers who started making plugins for QGIS.
- Its logic based on existing plugin called PluginBuider and basically makes a zip-archive which can be installed as a plugin in QGIS. Plugin contains two tools: easyPlugin itself and Scripter - a tool for testing raw python plugin code and other scripts.
- A detailed guide can be seen in github page or plugin website.
- version=1.0.0
- author=Pavel Pereverzev
- email=pavelpereverzev93@gmail.com
- # end of mandatory metadata
- # Optional items:
- # Uncomment the following line and add your changelog entries:
- changelog=
- # tags are comma separated with spaces allowed
- tags=plugin,module,template,development,wizard
- homepage=https://pereverzev.info/easyPlugin/
- tracker=https://github.com/Kylsha/easyPlugin/issues
- repository=https://github.com/Kylsha/easyPlugin
- icon=icon.png
- # experimental flag
- experimental=False
- # deprecated flag
- deprecated=False
|