PluginApis.py

changeset 9
f15912daba7e
parent 8
450c1914893d
child 12
c37c72600e60
child 14
e340c9f65133
equal deleted inserted replaced
8:450c1914893d 9:f15912daba7e
5 5
6 """ 6 """
7 Module implementing the APIs plugin. 7 Module implementing the APIs 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 import glob 13 import glob
14 14
15 from PyQt4.QtCore import QObject 15 from PyQt4.QtCore import QObject
17 # Start-of-Header 17 # Start-of-Header
18 name = "APIs Plugin" 18 name = "APIs Plugin"
19 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 19 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
20 autoactivate = True 20 autoactivate = True
21 deactivateable = True 21 deactivateable = True
22 version = "1.1.1" 22 version = "1.2.0"
23 className = "PluginApis" 23 className = "PluginApis"
24 packageName = "APIs" 24 packageName = "APIs"
25 shortDescription = "API files for auto-completion and call tips." 25 shortDescription = "API files for auto-completion and call tips."
26 longDescription = \ 26 longDescription = \
27 """This plug-in provides API files for auto-completion""" \ 27 """This plug-in provides API files for auto-completion""" \
28 """ and call tips that are often missing from distribution packages.""" 28 """ and call tips that are often missing from distribution packages."""
29 needsRestart = False 29 needsRestart = False
30 pyqtApi = 2 30 pyqtApi = 2
31 python2Compatible = True
31 # End-of-Header 32 # End-of-Header
32 33
33 error = "" 34 error = ""
34 35
35 36

eric ide

mercurial