-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_editor.bat
32 lines (32 loc) · 1014 Bytes
/
build_editor.bat
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
pyinstaller --noconfirm ^
--log-level=WARN ^
--clean ^
--windowed ^
--onefile ^
--icon=".\res\moodle.ico" ^
--add-data="moodleeditor.ui;." ^
--add-data="res;res\." ^
--add-data="config.toml;." ^
--exclude-module tkinter ^
--exclude-module sqlite ^
--exclude-module PyQt5.QtDesigner ^
--exclude-module PyQt5.QtMultimedia ^
--exclude-module PyQt5.QtMultimediaWidgets ^
--exclude-module PyQt5.QtNetwork ^
--exclude-module PyQt5.QtBluetooth ^
--exclude-module PyQt5.QtPrintSupport ^
--exclude-module PyQt5.QtNetworkAuth ^
--exclude-module PyQt5.QtNfc ^
--exclude-module PyQt5.QtQml ^
--exclude-module PyQt5.QtSql ^
--exclude-module PyQt5.QtQuick ^
--exclude-module PyQt5.QtSensors ^
--exclude-module PyQt5.QtSerialPort ^
--exclude-module PyQt5.QtXml ^
--exclude-module PyQt5.QtXmlPatterns ^
--exclude-module PyQt5.QtQuickWidgets ^
--exclude-module PyQt5.QtOpenGL ^
--exclude-module PyQt5.QtHelp ^
--exclude-module PyQt5.QtDBus ^
--exclude-module PyQt5.QtLocation ^
moodleeditor.py