Skip to content

Commit 3ac6cee

Browse files
authored
Ooops, this got blocked by the .gitignore
1 parent 7f6cfe9 commit 3ac6cee

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# -*- mode: python -*-
2+
3+
block_cipher = None
4+
5+
6+
a = Analysis(['build'],
7+
pathex=['/Users/mkennedy/github/talk-python/courses/100daysofcode/100days-course/days/94-96-guis/demos/final_search_app'],
8+
binaries=[],
9+
datas=[],
10+
hiddenimports=[],
11+
hookspath=[],
12+
runtime_hooks=[],
13+
excludes=[],
14+
win_no_prefer_redirects=False,
15+
win_private_assemblies=False,
16+
cipher=block_cipher)
17+
pyz = PYZ(a.pure, a.zipped_data,
18+
cipher=block_cipher)
19+
exe = EXE(pyz,
20+
a.scripts,
21+
exclude_binaries=True,
22+
name='build',
23+
debug=False,
24+
strip=False,
25+
upx=True,
26+
console=True )
27+
coll = COLLECT(exe,
28+
a.binaries,
29+
a.zipfiles,
30+
a.datas,
31+
strip=False,
32+
upx=True,
33+
name='build')

0 commit comments

Comments
 (0)