23 from eric7.Globals import isWindowsPlatform, isMacPlatform |
23 from eric7.Globals import isWindowsPlatform, isMacPlatform |
24 |
24 |
25 from ProjectPyramid.Project import Project |
25 from ProjectPyramid.Project import Project |
26 |
26 |
27 # Start-of-Header |
27 # Start-of-Header |
28 name = "Pyramid Project Plugin" |
28 __header__ = { |
29 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
29 "name": "Pyramid Project Plugin", |
30 autoactivate = True |
30 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
31 deactivateable = True |
31 "autoactivate": True, |
32 version = "10.3.0" |
32 "deactivateable": True, |
33 className = "ProjectPyramidPlugin" |
33 "version": "10.4.0", |
34 packageName = "ProjectPyramid" |
34 "className": "ProjectPyramidPlugin", |
35 shortDescription = "Project support for Pyramid projects." |
35 "packageName": "ProjectPyramid", |
36 longDescription = """This plugin implements project support for Pyramid projects.""" |
36 "shortDescription": "Project support for Pyramid projects.", |
37 needsRestart = False |
37 "longDescription": "This plugin implements project support for Pyramid 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 pyramidPluginObject = None |
46 pyramidPluginObject = None |