-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClipStitch.spec
More file actions
39 lines (36 loc) · 775 Bytes
/
Copy pathClipStitch.spec
File metadata and controls
39 lines (36 loc) · 775 Bytes
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
# -*- mode: python ; coding: utf-8 -*-
# PyInstaller spec for ClipStitch - windowed (no console), onedir.
# Build: python -m PyInstaller --noconfirm --clean ClipStitch.spec
# Output: dist/StitchClips/StitchClips.exe
a = Analysis(
['clipstitch_gui.py'],
pathex=['.'],
binaries=[],
datas=[('assets/ClipStitch.ico', 'assets')],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
noarchive=False,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
[],
exclude_binaries=True,
name='StitchClips',
debug=False,
strip=False,
upx=False,
console=False,
icon='assets/ClipStitch.ico',
)
coll = COLLECT(
exe,
a.binaries,
a.datas,
strip=False,
upx=False,
name='StitchClips',
)