20 # Start-Of-Header |
20 # Start-Of-Header |
21 name = "Refactoring Rope Plugin" |
21 name = "Refactoring Rope Plugin" |
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 = "1.0.2" |
25 version = "1.1.0" |
26 className = "RefactoringRopePlugin" |
26 className = "RefactoringRopePlugin" |
27 packageName = "RefactoringRope" |
27 packageName = "RefactoringRope" |
28 internalPackages = "rope" |
28 internalPackages = "rope" |
29 shortDescription = "Refactoring using the Rope library." |
29 shortDescription = "Refactoring and Code Assist using the Rope library." |
30 longDescription = ( |
30 longDescription = ( |
31 """This plug-in implements refactoring functionality""" |
31 """This plug-in implements refactoring functionality using the Rope""" |
32 """ using the Rope refactoring library. Additionally it implements an""" |
32 """ refactoring library. Additionally it implements an auto-completion,""" |
33 """ auto-completion, call-tips and code documentation provider as well""" |
33 """ call-tips and code documentation provider as well as a mouse""" |
34 """ as a mouse click handler.""" |
34 """ click handler.""" |
35 ) |
35 ) |
36 pyqtApi = 2 |
36 pyqtApi = 2 |
37 doNotCompile = True |
37 doNotCompile = True |
38 # End-Of-Header |
38 # End-Of-Header |
39 |
39 |