diff -r b946699e9e79 -r 8bdad5699288 src/eric7/Plugins/PluginWizardSetup.py --- a/src/eric7/Plugins/PluginWizardSetup.py Wed May 24 10:31:09 2023 +0200 +++ b/src/eric7/Plugins/PluginWizardSetup.py Wed May 24 10:45:11 2023 +0200 @@ -17,23 +17,25 @@ from eric7.UI import Info # Start-of-Header -name = "setup.py Wizard Plug-in" -author = "Detlev Offenbach <detlev@die-offenbachs.de>" -autoactivate = True -deactivateable = True -version = Info.VersionOnly -className = "SetupWizard" -packageName = "__core__" -shortDescription = "Wizard for the creation of a setup.py file." -longDescription = ( - """This plug-in implements a wizard to generate code for""" - """ a setup.py file. It supports the 'setuptools' variant.""" -) -needsRestart = False -pyqtApi = 2 +__header__ = { + "name": "setup.py Wizard Plug-in", + "author": "Detlev Offenbach <detlev@die-offenbachs.de>", + "autoactivate": True, + "deactivateable": True, + "version": Info.VersionOnly, + "className": "SetupWizard", + "packageName": "__core__", + "shortDescription": "Wizard for the creation of a setup.py file.", + "longDescription": ( + """This plug-in implements a wizard to generate code for""" + """ a setup.py file. It supports the 'setuptools' variant.""" + ), + "needsRestart": False, + "pyqtApi": 2, +} # End-of-Header -error = "" +error = "" # noqa: U200 class SetupWizard(QObject):