-
Notifications
You must be signed in to change notification settings - Fork 3
/
linux.spec
61 lines (53 loc) · 1.39 KB
/
linux.spec
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
# -*- mode: python ; coding: utf-8 -*-
from kivymd import hooks_path as kivymd_hooks_path
block_cipher = None
a = Analysis(
['./src/main.py'],
pathex=[],
binaries=[],
datas=[
("./src/backend/*.py", "backend"),
("./src/ui/accountselectscreen/*.*", "ui/accountselectscreen"),
("./src/ui/assets/*.png", "ui/assets"),
("./src/ui/components/*.py", "ui/components"),
("./src/ui/components/message_components/*.py", "ui/components/message_components"),
("./src/ui/messagescreen/*.*", "ui/messagescreen"),
("./src/ui/welcomescreen/*.*", "ui/welcomescreen"),
("./src/ui/progressscreen/*.*", "ui/progressscreen"),
],
hiddenimports=[],
hookspath=[kivymd_hooks_path],
hooksconfig={},
runtime_hooks=[],
excludes=[],
cipher=block_cipher,
noarchive=False,
)
splash = Splash(
"ui/assets/Splash Screen.png",
binaries=a.binaries,
datas=a.datas,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
splash,
splash.binaries,
a.binaries,
a.datas,
name='MR.DM',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon="ui/assets/icon.png"
)