-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild_config.json
More file actions
65 lines (65 loc) · 1.17 KB
/
build_config.json
File metadata and controls
65 lines (65 loc) · 1.17 KB
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
{
"--name": "sample_tools_UI",
"--workpath": "build",
"--distpath": "dist",
"--icon": {
"Windows": "tools/UI/icons/sample_tools.ico",
"Darwin": "tools/UI/icons/sample_tools.icns",
"Linux": null
},
"--splash": {
"Windows": "tools/UI/icons/sample_tools_splash.png",
"Darwin": null,
"Linux": "tools/UI/icons/sample_tools_splash.png"
},
"--onefile": {
"Darwin": false,
"Linux": true,
"Windows": true
},
"--onedir": {
"Darwin": true,
"Windows": false,
"Linux": false
},
"--noconfirm": true,
"--noconsole": true,
"--add-data": [
"*.py:.",
"tools:tools/"
],
"--hidden-import": [
"pandas",
"mutagen",
"chunkmuncher",
"matplotlib",
"sounddevice",
"soundfile",
"noisereduce",
"soxr",
"pyrubberband",
"webcolors",
"numpy",
"scipy",
"PyQt5",
"PIL",
"platformdirs",
"getpass"
],
"--collect-submodules": [
"PyQt5.Qt",
"PIL.Image",
"PIL.ImageDraw",
"matplotlib"
],
"--exclude": [
"tkinter",
"pip",
"pyinstaller"
],
"--optimize": 2,
"--version-file": {
"Windows": "sample_tools_UI_version.txt"
},
"--noupx": true
}