PluginProjectDjango.py

changeset 47
19da3417eb3d
parent 44
ae62ba409285
child 51
0b60dbff8e9a
equal deleted inserted replaced
46:e8909f38e9db 47:19da3417eb3d
5 5
6 """ 6 """
7 Module implementing the Django project plugin. 7 Module implementing the Django 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 = "Django Project Plugin" 27 name = "Django 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 = "3.3.6" 31 version = "3.4.0"
32 className = "ProjectDjangoPlugin" 32 className = "ProjectDjangoPlugin"
33 packageName = "ProjectDjango" 33 packageName = "ProjectDjango"
34 shortDescription = "Project support for Django projects." 34 shortDescription = "Project support for Django projects."
35 longDescription = \ 35 longDescription = \
36 """This plugin implements project support for Django projects.""" 36 """This plugin implements project support for Django 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 djangoPluginObject = None 44 djangoPluginObject = None

eric ide

mercurial