PluginRefactoringRope.py

changeset 347
b5048b5ff454
parent 346
877cac2e8d94
child 349
f48becdcb40b
equal deleted inserted replaced
346:877cac2e8d94 347:b5048b5ff454
4 # 4 #
5 5
6 """ 6 """
7 Module implementing the Rope refactoring plugin. 7 Module implementing the Rope refactoring plugin.
8 """ 8 """
9
10 from __future__ import unicode_literals
11 9
12 import os 10 import os
13 11
14 from PyQt5.QtCore import Qt, QObject, QTranslator, QCoreApplication 12 from PyQt5.QtCore import Qt, QObject, QTranslator, QCoreApplication
15 13
21 # Start-Of-Header 19 # Start-Of-Header
22 name = "Refactoring Rope Plugin" 20 name = "Refactoring Rope Plugin"
23 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 21 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
24 autoactivate = True 22 autoactivate = True
25 deactivateable = True 23 deactivateable = True
26 version = "7.2.1" 24 version = "7.3.0"
27 className = "RefactoringRopePlugin" 25 className = "RefactoringRopePlugin"
28 packageName = "RefactoringRope" 26 packageName = "RefactoringRope"
29 internalPackages = "rope" 27 internalPackages = "rope"
30 shortDescription = "Refactoring using the Rope library." 28 shortDescription = "Refactoring using the Rope library."
31 longDescription = ( 29 longDescription = (

eric ide

mercurial