forked from dangmai/looper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlooper.spec
33 lines (30 loc) · 963 Bytes
/
looper.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
# -*- mode: python -*-
block_cipher = None
fontawesome = Tree('C:\\Python34\\Lib\\site-packages\\qtawesome\\fonts', prefix = 'qtawesome\\fonts')
a = Analysis(['.\\main.py'],
pathex=['C:\\Dev\\looper'],
hiddenimports=[],
hookspath=None,
runtime_hooks=None,
excludes=None,
cipher=block_cipher)
pyz = PYZ(a.pure,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
exclude_binaries=True,
name='main.exe',
debug=False,
strip=None,
upx=False,
console=True )
coll = COLLECT(exe,
a.binaries,
[('gui/application.qss', 'gui/application.qss', 'DATA')],
[('gui/main_window.ui', 'gui/main_window.ui', 'DATA')],
fontawesome,
a.zipfiles,
a.datas,
strip=None,
upx=False,
name='main')