Skip to content

Commit fa20cd9

Browse files
committed
Add spec file
1 parent 15845f0 commit fa20cd9

2 files changed

Lines changed: 35 additions & 1 deletion

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ MANIFEST
3030
# Usually these files are written by a python script from a template
3131
# before PyInstaller builds the exe, so as to inject date/other infos into it.
3232
*.manifest
33-
*.spec
3433

3534
# Installer logs
3635
pip-log.txt

captioncompiler.spec

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
a = Analysis(
2+
['src/main.py'],
3+
pathex=[],
4+
binaries=[],
5+
datas=[],
6+
hiddenimports=[],
7+
hookspath=[],
8+
hooksconfig={},
9+
runtime_hooks=[],
10+
excludes=[],
11+
noarchive=False,
12+
optimize=0,
13+
)
14+
pyz = PYZ(a.pure)
15+
16+
exe = EXE(
17+
pyz,
18+
a.scripts,
19+
a.binaries,
20+
a.datas,
21+
[],
22+
name='CaptionCompiler',
23+
debug=False,
24+
bootloader_ignore_signals=False,
25+
strip=False,
26+
upx=True,
27+
upx_exclude=[],
28+
runtime_tmpdir=None,
29+
console=True,
30+
disable_windowed_traceback=False,
31+
argv_emulation=False,
32+
target_arch=None,
33+
codesign_identity=None,
34+
entitlements_file=None,
35+
)

0 commit comments

Comments
 (0)