11 import os |
11 import os |
12 |
12 |
13 from PyQt6.QtCore import QObject, QTranslator |
13 from PyQt6.QtCore import QObject, QTranslator |
14 from PyQt6.QtWidgets import QMenu |
14 from PyQt6.QtWidgets import QMenu |
15 |
15 |
16 from EricWidgets.EricApplication import ericApp |
16 from eric7.EricWidgets.EricApplication import ericApp |
17 |
17 |
18 from ProjectDjangoTagsMenu.DjangoTagsMenuHandler import DjangoTagsMenuHandler |
18 from ProjectDjangoTagsMenu.DjangoTagsMenuHandler import DjangoTagsMenuHandler |
19 |
19 |
20 # Start-of-Header |
20 # Start-of-Header |
21 name = "Django Tags Menu Plugin" |
21 name = "Django Tags Menu Plugin" |
22 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
22 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
23 autoactivate = True |
23 autoactivate = True |
24 deactivateable = True |
24 deactivateable = True |
25 version = "10.0.0" |
25 version = "10.1.0" |
26 className = "ProjectDjangoTagsMenuPlugin" |
26 className = "ProjectDjangoTagsMenuPlugin" |
27 packageName = "ProjectDjangoTagsMenu" |
27 packageName = "ProjectDjangoTagsMenu" |
28 shortDescription = "Tags menu for Django projects." |
28 shortDescription = "Tags menu for Django projects." |
29 longDescription = ( |
29 longDescription = ( |
30 """This plug-in adds a menu to select various tag templates to the""" |
30 """This plug-in adds a menu to select various tag templates to the""" |