17 from E5Gui.E5Action import E5Action |
17 from E5Gui.E5Action import E5Action |
18 from Project.ProjectBrowserModel import ProjectBrowserFileItem |
18 from Project.ProjectBrowserModel import ProjectBrowserFileItem |
19 from Utilities import determinePythonVersion |
19 from Utilities import determinePythonVersion |
20 |
20 |
21 import Preferences |
21 import Preferences |
|
22 import UI.Info |
22 |
23 |
23 # Start-Of-Header |
24 # Start-Of-Header |
24 name = "Code Style Checker Plugin" |
25 name = "Code Style Checker Plugin" |
25 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
26 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
26 autoactivate = True |
27 autoactivate = True |
27 deactivateable = True |
28 deactivateable = True |
28 version = "6.2.0" |
29 version = UI.Info.VersionOnly |
29 className = "CodeStyleCheckerPlugin" |
30 className = "CodeStyleCheckerPlugin" |
30 packageName = "__core__" |
31 packageName = "__core__" |
31 shortDescription = "Show the Python Code Style Checker dialog." |
32 shortDescription = "Show the Python Code Style Checker dialog." |
32 longDescription = """This plugin implements the Python Code Style""" \ |
33 longDescription = """This plugin implements the Python Code Style""" \ |
33 """ Checker dialog. A PEP-8 checker is used to check Python source""" \ |
34 """ Checker dialog. A PEP-8 checker is used to check Python source""" \ |