PluginProjectDjango.py

changeset 26
2dd206cd1aa2
parent 20
09e9084796de
child 29
76d04dd67367
equal deleted inserted replaced
25:8fa8442102a2 26:2dd206cd1aa2
4 # 4 #
5 5
6 """ 6 """
7 Module implementing the Django project plugin. 7 Module implementing the Django 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 = "Django Project Plugin" 27 name = "Django 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 = "3.1.0" 31 version = "3.2.0"
30 className = "ProjectDjangoPlugin" 32 className = "ProjectDjangoPlugin"
31 packageName = "ProjectDjango" 33 packageName = "ProjectDjango"
32 shortDescription = "Project support for Django projects." 34 shortDescription = "Project support for Django projects."
33 longDescription = """This plugin implements project support for Django projects.""" 35 longDescription = """This plugin implements project support for Django projects."""
34 needsRestart = False 36 needsRestart = False

eric ide

mercurial