-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy patheric6_plugininstall.py
79 lines (63 loc) · 2.18 KB
/
eric6_plugininstall.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright (c) 2007 - 2016 Detlev Offenbach <[email protected]>
#
"""
Eric6 Plugin Installer.
This is the main Python script to install eric6 plugins from outside of the
IDE.
"""
from __future__ import unicode_literals
import Toolbox.PyQt4ImportHook # __IGNORE_WARNING__
try: # Only for Py2
import Globals.compatibility_fixes # __IGNORE_WARNING__
except (ImportError):
pass
import sys
import os
for arg in sys.argv[:]:
if arg.startswith("--config="):
import Globals
configDir = arg.replace("--config=", "")
Globals.setConfigDir(configDir)
sys.argv.remove(arg)
elif arg.startswith("--settings="):
from PyQt5.QtCore import QSettings
settingsDir = os.path.expanduser(arg.replace("--settings=", ""))
if not os.path.isdir(settingsDir):
os.makedirs(settingsDir)
QSettings.setPath(QSettings.IniFormat, QSettings.UserScope,
settingsDir)
sys.argv.remove(arg)
from Globals import AppInfo
from Toolbox import Startup
def createMainWidget(argv):
"""
Function to create the main widget.
@param argv list of commandline parameters (list of strings)
@return reference to the main widget (QWidget)
"""
from PluginManager.PluginInstallDialog import PluginInstallWindow
return PluginInstallWindow(argv[1:])
def main():
"""
Main entry point into the application.
"""
options = [
("--config=configDir",
"use the given directory as the one containing the config files"),
("--settings=settingsDir",
"use the given directory to store the settings files"),
("", "names of plugins to install")
]
appinfo = AppInfo.makeAppInfo(sys.argv,
"Pymakr Plugin Installer",
"",
"Plugin installation utility for Pymakr",
options)
res = Startup.simpleAppStartup(sys.argv,
appinfo,
createMainWidget)
sys.exit(res)
if __name__ == '__main__':
main()