PluginProjectKivy.py

changeset 22
0de62c0edd89
parent 20
a8eeec592ae0
child 25
254bfe16b90d
equal deleted inserted replaced
21:ff380dc32589 22:0de62c0edd89
5 5
6 """ 6 """
7 Module implementing the Kivy project plug-in. 7 Module implementing the Kivy project plug-in.
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 glob 13 import glob
14 import fnmatch 14 import fnmatch
15 15
24 # Start-of-Header 24 # Start-of-Header
25 name = "Kivy Project Plugin" 25 name = "Kivy Project Plugin"
26 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 26 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
27 autoactivate = True 27 autoactivate = True
28 deactivateable = True 28 deactivateable = True
29 version = "1.1.2" 29 version = "1.2.0"
30 className = "ProjectKivyPlugin" 30 className = "ProjectKivyPlugin"
31 packageName = "ProjectKivy" 31 packageName = "ProjectKivy"
32 shortDescription = "Project support for Kivy projects." 32 shortDescription = "Project support for Kivy projects."
33 longDescription = \ 33 longDescription = \
34 """This plugin implements project support for Kivy projects.""" 34 """This plugin implements project support for Kivy projects."""
35 needsRestart = False 35 needsRestart = False
36 pyqtApi = 2 36 pyqtApi = 2
37 python2Compatible = True
37 # End-of-Header 38 # End-of-Header
38 39
39 error = "" 40 error = ""
40 41
41 42

eric ide

mercurial