12 from PyQt6.QtCore import QObject |
12 from PyQt6.QtCore import QObject |
13 |
13 |
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.EricWidgets.EricApplication import ericApp |
16 from eric7.EricWidgets.EricApplication import ericApp |
17 from eric7.UI import Info |
17 from eric7.__version__ import VersionOnly |
18 |
18 |
19 # Start-of-Header |
19 # Start-of-Header |
20 __header__ = { |
20 __header__ = { |
21 "name": "setup.py Wizard Plug-in", |
21 "name": "setup.py Wizard Plug-in", |
22 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
22 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
23 "autoactivate": True, |
23 "autoactivate": True, |
24 "deactivateable": True, |
24 "deactivateable": True, |
25 "version": Info.VersionOnly, |
25 "version": VersionOnly, |
26 "className": "SetupWizard", |
26 "className": "SetupWizard", |
27 "packageName": "__core__", |
27 "packageName": "__core__", |
28 "shortDescription": "Wizard for the creation of a setup.py file.", |
28 "shortDescription": "Wizard for the creation of a setup.py file.", |
29 "longDescription": ( |
29 "longDescription": ( |
30 """This plug-in implements a wizard to generate code for""" |
30 """This plug-in implements a wizard to generate code for""" |