16 from eric7.EricWidgets import EricMessageBox |
16 from eric7.EricWidgets import EricMessageBox |
17 from eric7.EricWidgets.EricApplication import ericApp |
17 from eric7.EricWidgets.EricApplication import ericApp |
18 from eric7.UI import Info |
18 from eric7.UI import Info |
19 |
19 |
20 # Start-of-Header |
20 # Start-of-Header |
21 name = "eric plug-in Wizard Plug-in" |
21 __header__ = { |
22 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
22 "name": "eric plug-in Wizard Plug-in", |
23 autoactivate = True |
23 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
24 deactivateable = True |
24 "autoactivate": True, |
25 version = Info.VersionOnly |
25 "deactivateable": True, |
26 className = "WizardEricPluginWizard" |
26 "version": Info.VersionOnly, |
27 packageName = "__core__" |
27 "className": "WizardEricPluginWizard", |
28 shortDescription = "Wizard for the creation of an eric plug-in file." |
28 "packageName": "__core__", |
29 longDescription = ( |
29 "shortDescription": "Wizard for the creation of an eric plug-in file.", |
30 """This plug-in implements a wizard to generate code for""" |
30 "longDescription": ( |
31 """ an eric plug-in main script file.""" |
31 """This plug-in implements a wizard to generate code for""" |
32 ) |
32 """ an eric plug-in main script file.""" |
33 needsRestart = False |
33 ), |
34 pyqtApi = 2 |
34 "needsRestart": False, |
|
35 "pyqtApi": 2, |
|
36 } |
35 # End-of-Header |
37 # End-of-Header |
36 |
38 |
37 error = "" |
39 error = "" # noqa: U200 |
38 |
40 |
39 |
41 |
40 class WizardEricPluginWizard(QObject): |
42 class WizardEricPluginWizard(QObject): |
41 """ |
43 """ |
42 Class implementing the eric plug-in wizard plug-in. |
44 Class implementing the eric plug-in wizard plug-in. |