src/eric7/Plugins/PluginAbout.py

branch
eric7
changeset 10061
8bdad5699288
parent 9653
e67609152c5e
child 10437
2f70ca07f0af
equal deleted inserted replaced
10060:b946699e9e79 10061:8bdad5699288
14 from eric7.EricGui.EricAction import EricAction 14 from eric7.EricGui.EricAction import EricAction
15 from eric7.EricWidgets import EricMessageBox 15 from eric7.EricWidgets import EricMessageBox
16 from eric7.UI import Info 16 from eric7.UI import Info
17 17
18 # Start-Of-Header 18 # Start-Of-Header
19 name = "About Plugin" 19 __header__ = {
20 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 20 "name": "About Plugin",
21 autoactivate = True 21 "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
22 deactivateable = True 22 "autoactivate": True,
23 version = Info.VersionOnly 23 "deactivateable": True,
24 className = "AboutPlugin" 24 "version": Info.VersionOnly,
25 packageName = "__core__" 25 "className": "AboutPlugin",
26 shortDescription = "Show the About dialogs." 26 "packageName": "__core__",
27 longDescription = """This plugin shows the About dialogs.""" 27 "shortDescription": "Show the About dialogs.",
28 pyqtApi = 2 28 "longDescription": """This plugin shows the About dialogs.""",
29 "pyqtApi": 2,
30 }
29 # End-Of-Header 31 # End-Of-Header
30 32
31 error = "" 33 error = "" # noqa: U200
32 34
33 35
34 class AboutPlugin(QObject): 36 class AboutPlugin(QObject):
35 """ 37 """
36 Class implementing the About plugin. 38 Class implementing the About plugin.

eric ide

mercurial