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.UI import Info |
18 |
18 |
19 # Start-of-Header |
19 # Start-of-Header |
20 name = "setup.py Wizard Plug-in" |
20 __header__ = { |
21 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
21 "name": "setup.py Wizard Plug-in", |
22 autoactivate = True |
22 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
23 deactivateable = True |
23 "autoactivate": True, |
24 version = Info.VersionOnly |
24 "deactivateable": True, |
25 className = "SetupWizard" |
25 "version": Info.VersionOnly, |
26 packageName = "__core__" |
26 "className": "SetupWizard", |
27 shortDescription = "Wizard for the creation of a setup.py file." |
27 "packageName": "__core__", |
28 longDescription = ( |
28 "shortDescription": "Wizard for the creation of a setup.py file.", |
29 """This plug-in implements a wizard to generate code for""" |
29 "longDescription": ( |
30 """ a setup.py file. It supports the 'setuptools' variant.""" |
30 """This plug-in implements a wizard to generate code for""" |
31 ) |
31 """ a setup.py file. It supports the 'setuptools' variant.""" |
32 needsRestart = False |
32 ), |
33 pyqtApi = 2 |
33 "needsRestart": False, |
|
34 "pyqtApi": 2, |
|
35 } |
34 # End-of-Header |
36 # End-of-Header |
35 |
37 |
36 error = "" |
38 error = "" # noqa: U200 |
37 |
39 |
38 |
40 |
39 class SetupWizard(QObject): |
41 class SetupWizard(QObject): |
40 """ |
42 """ |
41 Class implementing the setup.py wizard plug-in. |
43 Class implementing the setup.py wizard plug-in. |