PluginProjectPyramid.py

changeset 56
c7adc68350dd
parent 48
c313efdb01de
child 57
e654970c913e
equal deleted inserted replaced
53:a3ba38d3a25e 56:c7adc68350dd
4 # 4 #
5 5
6 """ 6 """
7 Module implementing the Pyramid project plugin. 7 Module implementing the Pyramid project plugin.
8 """ 8 """
9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
9 11
10 import os 12 import os
11 import glob 13 import glob
12 import fnmatch 14 import fnmatch
13 15
24 # Start-of-Header 26 # Start-of-Header
25 name = "Pyramid Project Plugin" 27 name = "Pyramid Project Plugin"
26 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 28 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
27 autoactivate = True 29 autoactivate = True
28 deactivateable = True 30 deactivateable = True
29 version = "1.3.0" 31 version = "1.4.0"
30 className = "ProjectPyramidPlugin" 32 className = "ProjectPyramidPlugin"
31 packageName = "ProjectPyramid" 33 packageName = "ProjectPyramid"
32 shortDescription = "Project support for Pyramid projects." 34 shortDescription = "Project support for Pyramid projects."
33 longDescription = """This plugin implements project support for Pyramid projects.""" 35 longDescription = """This plugin implements project support for Pyramid projects."""
34 needsRestart = False 36 needsRestart = False

eric ide

mercurial