PluginProjectPyramid.py

changeset 71
8a78fab32c18
parent 69
ebe7c2ad328e
child 74
11587ae1122f
equal deleted inserted replaced
70:8a89f6a21075 71:8a78fab32c18
5 5
6 """ 6 """
7 Module implementing the Pyramid project plugin. 7 Module implementing the Pyramid project 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 import fnmatch 14 import fnmatch
15 15
26 # Start-of-Header 26 # Start-of-Header
27 name = "Pyramid Project Plugin" 27 name = "Pyramid Project Plugin"
28 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 28 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
29 autoactivate = True 29 autoactivate = True
30 deactivateable = True 30 deactivateable = True
31 version = "1.5.2" 31 version = "1.6.0"
32 className = "ProjectPyramidPlugin" 32 className = "ProjectPyramidPlugin"
33 packageName = "ProjectPyramid" 33 packageName = "ProjectPyramid"
34 shortDescription = "Project support for Pyramid projects." 34 shortDescription = "Project support for Pyramid projects."
35 longDescription = \ 35 longDescription = \
36 """This plugin implements project support for Pyramid projects.""" 36 """This plugin implements project support for Pyramid projects."""
37 needsRestart = False 37 needsRestart = False
38 pyqtApi = 2 38 pyqtApi = 2
39 python2Compatible = True
39 # End-of-Header 40 # End-of-Header
40 41
41 error = "" 42 error = ""
42 43
43 pyramidPluginObject = None 44 pyramidPluginObject = None

eric ide

mercurial