PluginRefactoringRope.py

branch
eric7
changeset 422
f98253eed7f0
parent 420
fa31c3a0df1d
child 426
7592a1c052e8
diff -r e3167d354ab6 -r f98253eed7f0 PluginRefactoringRope.py
--- a/PluginRefactoringRope.py	Wed Oct 23 17:45:58 2024 +0200
+++ b/PluginRefactoringRope.py	Sat Oct 26 15:50:43 2024 +0200
@@ -22,22 +22,25 @@
     from .RefactoringRope.RopeUtilities import isRemoteFileName
 
 # Start-Of-Header
-name = "Refactoring Rope Plugin"
-author = "Detlev Offenbach <detlev@die-offenbachs.de>"
-autoactivate = True
-deactivateable = True
-version = "10.7.3"
-className = "RefactoringRopePlugin"
-packageName = "RefactoringRope"
-shortDescription = "Refactoring and Code Assist using the Rope library."
-longDescription = (
-    """This plug-in implements refactoring functionality using the Rope"""
-    """ refactoring library. Additionally it implements an auto-completion,"""
-    """ call-tips and code documentation provider as well as a mouse"""
-    """ click handler."""
-)
-pyqtApi = 2
-doNotCompile = True
+__header__ = {
+    "name": "Refactoring Rope Plugin",
+    "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
+    "autoactivate": True,
+    "deactivateable": True,
+    "version": "10.7.4",
+    "className": "RefactoringRopePlugin",
+    "packageName": "RefactoringRope",
+    "shortDescription": "Refactoring and Code Assist using the Rope library.",
+    "longDescription": (
+        """This plug-in implements refactoring functionality using the Rope"""
+        """ refactoring library. Additionally it implements an auto-completion,"""
+        """ call-tips and code documentation provider as well as a mouse"""
+        """ click handler."""
+    ),
+    "hasCompiledForms": True,
+    "pyqtApi": 2,
+    "doNotCompile": True,
+}
 # End-Of-Header
 
 error = ""

eric ide

mercurial