PluginAssistantEric.py

changeset 93
9e323efeffcf
parent 89
af91195b999a
child 97
6226cdaea3ad
equal deleted inserted replaced
92:0dc697c02814 93:9e323efeffcf
5 5
6 """ 6 """
7 Module implementing the Eric assistant plugin. 7 Module implementing the Eric assistant plugin.
8 """ 8 """
9 9
10 from __future__ import unicode_literals # __IGNORE_WARNING__ 10 from __future__ import unicode_literals
11 11
12 import os 12 import os
13 13
14 from PyQt4.QtCore import QObject, QTranslator 14 from PyQt4.QtCore import QObject, QTranslator
15 from PyQt4.QtGui import QApplication 15 from PyQt4.QtGui import QApplication
23 # Start-Of-Header 23 # Start-Of-Header
24 name = "Assistant Eric Plugin" 24 name = "Assistant Eric Plugin"
25 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 25 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
26 autoactivate = True 26 autoactivate = True
27 deactivateable = True 27 deactivateable = True
28 version = "2.6.4" 28 version = "2.7.0"
29 className = "AssistantEricPlugin" 29 className = "AssistantEricPlugin"
30 packageName = "AssistantEric" 30 packageName = "AssistantEric"
31 shortDescription = "Alternative autocompletion and calltips provider." 31 shortDescription = "Alternative autocompletion and calltips provider."
32 longDescription = \ 32 longDescription = \
33 """This plugin implements an alternative autocompletion and""" \ 33 """This plugin implements an alternative autocompletion and""" \
34 """ calltips provider.""" 34 """ calltips provider."""
35 needsRestart = True 35 needsRestart = True
36 pyqtApi = 2 36 pyqtApi = 2
37 python2Compatible = True
37 # End-Of-Header 38 # End-Of-Header
38 39
39 error = "" 40 error = ""
40 41
41 assistantEricPluginObject = None 42 assistantEricPluginObject = None

eric ide

mercurial