PluginCxFreeze.py

changeset 69
edd974cbe7b6
parent 67
28fd1bbe2e34
child 71
9cd82b80f987
equal deleted inserted replaced
68:2a1838192c65 69:edd974cbe7b6
5 5
6 """ 6 """
7 Module implementing the CxFreeze plugin. 7 Module implementing the CxFreeze 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 import platform 13 import platform
14 14
15 from PyQt4.QtCore import QObject, QTranslator, QCoreApplication 15 from PyQt4.QtCore import QObject, QTranslator, QCoreApplication
32 # Start-of-Header 32 # Start-of-Header
33 name = "CxFreeze Plugin" 33 name = "CxFreeze Plugin"
34 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 34 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
35 autoactivate = True 35 autoactivate = True
36 deactivateable = True 36 deactivateable = True
37 version = "5.2.2" 37 version = "5.3.0"
38 className = "CxFreezePlugin" 38 className = "CxFreezePlugin"
39 packageName = "CxFreeze" 39 packageName = "CxFreeze"
40 shortDescription = "Show the CxFreeze dialogs." 40 shortDescription = "Show the CxFreeze dialogs."
41 longDescription = \ 41 longDescription = \
42 """This plugin implements the CxFreeze dialogs.""" \ 42 """This plugin implements the CxFreeze dialogs.""" \
43 """ CxFreeze is used to generate a distribution package.""" 43 """ CxFreeze is used to generate a distribution package."""
44 needsRestart = False 44 needsRestart = False
45 pyqtApi = 2 45 pyqtApi = 2
46 python2Compatible = True
46 # End-of-Header 47 # End-of-Header
47 48
48 exePy2 = [] 49 exePy2 = []
49 exePy3 = [] 50 exePy3 = []
50 51

eric ide

mercurial