23 QtUtilities, |
23 QtUtilities, |
24 ) |
24 ) |
25 from eric7.UI import Info |
25 from eric7.UI import Info |
26 |
26 |
27 # Start-Of-Header |
27 # Start-Of-Header |
28 name = "Ericdoc Plugin" |
28 __header__ = { |
29 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
29 "name": "Ericdoc Plugin", |
30 autoactivate = True |
30 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
31 deactivateable = True |
31 "autoactivate": True, |
32 version = Info.VersionOnly |
32 "deactivateable": True, |
33 className = "EricdocPlugin" |
33 "version": Info.VersionOnly, |
34 packageName = "__core__" |
34 "className": "EricdocPlugin", |
35 shortDescription = "Show the Ericdoc dialogs." |
35 "packageName": "__core__", |
36 longDescription = ( |
36 "shortDescription": "Show the Ericdoc dialogs.", |
37 """This plugin implements the Ericdoc dialogs.""" |
37 "longDescription": ( |
38 """ Ericdoc is used to generate a source code documentation""" |
38 """This plugin implements the Ericdoc dialogs.""" |
39 """ for Python and Ruby projects.""" |
39 """ Ericdoc is used to generate a source code documentation""" |
40 ) |
40 """ for Python and Ruby projects.""" |
41 pyqtApi = 2 |
41 ), |
|
42 "pyqtApi": 2, |
|
43 } |
42 # End-Of-Header |
44 # End-Of-Header |
43 |
45 |
44 error = "" |
46 error = "" # noqa: U200 |
45 |
47 |
46 |
48 |
47 def exeDisplayDataList(): |
49 def exeDisplayDataList(): |
48 """ |
50 """ |
49 Public method to support the display of some executable info. |
51 Public method to support the display of some executable info. |