PluginProjectDjangoTagsMenu.py

changeset 23
070a6c65c8a9
parent 21
2f95d929282e
child 26
b21b4fc418bc
equal deleted inserted replaced
22:02200dfe0fcf 23:070a6c65c8a9
5 5
6 """ 6 """
7 Module implementing the Django tags menu plugin. 7 Module implementing the Django tags menu plugin.
8 """ 8 """
9 9
10 from __future__ import unicode_literals # __IGNORE_WARNING__ 10 from __future__ import unicode_literals
11 11
12 import os 12 import os
13 13
14 from PyQt4.QtCore import QObject, QTranslator 14 from PyQt4.QtCore import QObject, QTranslator
15 from PyQt4.QtGui import QMenu 15 from PyQt4.QtGui import QMenu
21 # Start-of-Header 21 # Start-of-Header
22 name = "Django Tags Menu Plugin" 22 name = "Django Tags Menu Plugin"
23 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 23 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
24 autoactivate = True 24 autoactivate = True
25 deactivateable = True 25 deactivateable = True
26 version = "0.4.0" 26 version = "1.0.0"
27 className = "ProjectDjangoTagsMenuPlugin" 27 className = "ProjectDjangoTagsMenuPlugin"
28 packageName = "ProjectDjangoTagsMenu" 28 packageName = "ProjectDjangoTagsMenu"
29 shortDescription = "Tags menu for Django projects." 29 shortDescription = "Tags menu for Django projects."
30 longDescription = \ 30 longDescription = \
31 """This plug-in adds a menu to select various tag templates to the""" \ 31 """This plug-in adds a menu to select various tag templates to the""" \
32 """ Django menu.""" 32 """ Django menu."""
33 needsRestart = False 33 needsRestart = False
34 pyqtApi = 2 34 pyqtApi = 2
35 python2Compatible = True
35 # End-of-Header 36 # End-of-Header
36 37
37 error = "" 38 error = ""
38 39
39 40

eric ide

mercurial