eric6_plugininstall.py

changeset 3670
f0cb7579c0b4
parent 3669
ac84ac3c0f05
child 3778
0c5bc18da740
equal deleted inserted replaced
3669:ac84ac3c0f05 3670:f0cb7579c0b4
3 3
4 # Copyright (c) 2007 - 2014 Detlev Offenbach <detlev@die-offenbachs.de> 4 # Copyright (c) 2007 - 2014 Detlev Offenbach <detlev@die-offenbachs.de>
5 # 5 #
6 6
7 """ 7 """
8 Eric5 Plugin Installer. 8 Eric6 Plugin Installer.
9 9
10 This is the main Python script to install eric5 plugins from outside of the 10 This is the main Python script to install eric6 plugins from outside of the
11 IDE. 11 IDE.
12 """ 12 """
13 13
14 from __future__ import unicode_literals 14 from __future__ import unicode_literals
15 try: # Only for Py2 15 try: # Only for Py2
51 ("--config=configDir", 51 ("--config=configDir",
52 "use the given directory as the one containing the config files"), 52 "use the given directory as the one containing the config files"),
53 ("", "names of plugins to install") 53 ("", "names of plugins to install")
54 ] 54 ]
55 appinfo = AppInfo.makeAppInfo(sys.argv, 55 appinfo = AppInfo.makeAppInfo(sys.argv,
56 "Eric5 Plugin Installer", 56 "Eric6 Plugin Installer",
57 "", 57 "",
58 "Plugin installation utility for eric5", 58 "Plugin installation utility for eric6",
59 options) 59 options)
60 res = Startup.simpleAppStartup(sys.argv, 60 res = Startup.simpleAppStartup(sys.argv,
61 appinfo, 61 appinfo,
62 createMainWidget) 62 createMainWidget)
63 sys.exit(res) 63 sys.exit(res)

eric ide

mercurial