11 import glob |
11 import glob |
12 import fnmatch |
12 import fnmatch |
13 |
13 |
14 from PyQt6.QtCore import QCoreApplication, QObject, QTranslator |
14 from PyQt6.QtCore import QCoreApplication, QObject, QTranslator |
15 |
15 |
16 from EricWidgets.EricApplication import ericApp |
16 from eric7 import Preferences |
17 |
17 from eric7.EricWidgets.EricApplication import ericApp |
18 import Preferences |
18 from eric7.Globals import isWindowsPlatform, isMacPlatform |
19 |
|
20 from Globals import isWindowsPlatform, isMacPlatform |
|
21 |
19 |
22 from ProjectPyramid.Project import Project |
20 from ProjectPyramid.Project import Project |
23 |
21 |
24 # Start-of-Header |
22 # Start-of-Header |
25 name = "Pyramid Project Plugin" |
23 name = "Pyramid Project Plugin" |
26 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
24 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
27 autoactivate = True |
25 autoactivate = True |
28 deactivateable = True |
26 deactivateable = True |
29 version = "10.0.1" |
27 version = "10.1.0" |
30 className = "ProjectPyramidPlugin" |
28 className = "ProjectPyramidPlugin" |
31 packageName = "ProjectPyramid" |
29 packageName = "ProjectPyramid" |
32 shortDescription = "Project support for Pyramid projects." |
30 shortDescription = "Project support for Pyramid projects." |
33 longDescription = """This plugin implements project support for Pyramid projects.""" |
31 longDescription = """This plugin implements project support for Pyramid projects.""" |
34 needsRestart = False |
32 needsRestart = False |
187 lexerAssociationCallback=self.lexerAssociationCallback, |
185 lexerAssociationCallback=self.lexerAssociationCallback, |
188 binaryTranslationsCallback=self.binaryTranslationsCallback, |
186 binaryTranslationsCallback=self.binaryTranslationsCallback, |
189 progLanguages=self.__supportedVariants[:], |
187 progLanguages=self.__supportedVariants[:], |
190 ) |
188 ) |
191 |
189 |
192 from Project.ProjectBrowser import ( |
190 from eric7.Project.ProjectBrowser import ( |
193 SourcesBrowserFlag, |
191 SourcesBrowserFlag, |
194 FormsBrowserFlag, |
192 FormsBrowserFlag, |
195 TranslationsBrowserFlag, |
193 TranslationsBrowserFlag, |
196 OthersBrowserFlag, |
194 OthersBrowserFlag, |
197 ) |
195 ) |