src/eric7/Plugins/PluginEricapi.py

branch
eric7
changeset 10061
8bdad5699288
parent 9653
e67609152c5e
child 10069
435cc5875135
equal deleted inserted replaced
10060:b946699e9e79 10061:8bdad5699288
17 from eric7.Globals import getConfig 17 from eric7.Globals import getConfig
18 from eric7.SystemUtilities import FileSystemUtilities, OSUtilities, PythonUtilities 18 from eric7.SystemUtilities import FileSystemUtilities, OSUtilities, PythonUtilities
19 from eric7.UI import Info 19 from eric7.UI import Info
20 20
21 # Start-Of-Header 21 # Start-Of-Header
22 name = "Ericapi Plugin" 22 __header__ = {
23 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 23 "name": "Ericapi Plugin",
24 autoactivate = True 24 "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
25 deactivateable = True 25 "autoactivate": True,
26 version = Info.VersionOnly 26 "deactivateable": True,
27 className = "EricapiPlugin" 27 "version": Info.VersionOnly,
28 packageName = "__core__" 28 "className": "EricapiPlugin",
29 shortDescription = "Show the Ericapi dialogs." 29 "packageName": "__core__",
30 longDescription = ( 30 "shortDescription": "Show the Ericapi dialogs.",
31 """This plugin implements the Ericapi dialogs.""" 31 "longDescription": (
32 """ Ericapi is used to generate a QScintilla API file for Python and""" 32 """This plugin implements the Ericapi dialogs."""
33 """ Ruby projects.""" 33 """ Ericapi is used to generate a QScintilla API file for Python and"""
34 ) 34 """ Ruby projects."""
35 pyqtApi = 2 35 ),
36 "pyqtApi": 2,
37 }
36 # End-Of-Header 38 # End-Of-Header
37 39
38 error = "" 40 error = "" # noqa: U200
39 41
40 42
41 def exeDisplayData(): 43 def exeDisplayData():
42 """ 44 """
43 Public method to support the display of some executable info. 45 Public method to support the display of some executable info.

eric ide

mercurial