23 from eric7.Globals import isWindowsPlatform, isMacPlatform |
23 from eric7.Globals import isWindowsPlatform, isMacPlatform |
24 |
24 |
25 from ProjectDjango.Project import Project |
25 from ProjectDjango.Project import Project |
26 |
26 |
27 # Start-of-Header |
27 # Start-of-Header |
28 name = "Django Project Plugin" |
28 __header__ = { |
29 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
29 "name": "Django Project Plugin", |
30 autoactivate = True |
30 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
31 deactivateable = True |
31 "autoactivate": True, |
32 version = "10.3.1" |
32 "deactivateable": True, |
33 className = "ProjectDjangoPlugin" |
33 "version": "10.3.2", |
34 packageName = "ProjectDjango" |
34 "className": "ProjectDjangoPlugin", |
35 shortDescription = "Project support for Django projects." |
35 "packageName": "ProjectDjango", |
36 longDescription = """This plugin implements project support for Django projects.""" |
36 "shortDescription": "Project support for Django projects.", |
37 needsRestart = False |
37 "longDescription": "This plugin implements project support for Django projects.", |
38 pyqtApi = 2 |
38 "needsRestart": False, |
|
39 "hasCompiledForms": True, |
|
40 "pyqtApi": 2, |
|
41 } |
39 # End-of-Header |
42 # End-of-Header |
40 |
43 |
41 error = "" |
44 error = "" |
42 |
45 |
43 djangoPluginObject = None |
46 djangoPluginObject = None |