15 |
15 |
16 from eric7.EricWidgets.EricApplication import ericApp |
16 from eric7.EricWidgets.EricApplication import ericApp |
17 from ProjectDjangoTagsMenu.DjangoTagsMenuHandler import DjangoTagsMenuHandler |
17 from ProjectDjangoTagsMenu.DjangoTagsMenuHandler import DjangoTagsMenuHandler |
18 |
18 |
19 # Start-of-Header |
19 # Start-of-Header |
20 name = "Django Tags Menu Plugin" |
20 __header__ = { |
21 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
21 "name": "Django Tags Menu Plugin", |
22 autoactivate = True |
22 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
23 deactivateable = True |
23 "autoactivate": True, |
24 version = "10.2.0" |
24 "deactivateable": True, |
25 className = "ProjectDjangoTagsMenuPlugin" |
25 "version": "10.2.1", |
26 packageName = "ProjectDjangoTagsMenu" |
26 "className": "ProjectDjangoTagsMenuPlugin", |
27 shortDescription = "Tags menu for Django projects." |
27 "packageName": "ProjectDjangoTagsMenu", |
28 longDescription = ( |
28 "shortDescription": "Tags menu for Django projects.", |
29 """This plug-in adds a menu to select various tag templates to the""" |
29 "longDescription": ( |
30 """ Django menu.""" |
30 "This plug-in adds a menu to select various tag templates to the" |
31 ) |
31 " Django menu." |
32 needsRestart = False |
32 ), |
33 pyqtApi = 2 |
33 "needsRestart": False, |
|
34 "hasCompiledForms": True, |
|
35 "pyqtApi": 2, |
|
36 } |
34 # End-of-Header |
37 # End-of-Header |
35 |
38 |
36 error = "" |
39 error = "" |
37 |
40 |
38 |
41 |