File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
3635pip-log.txt
Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments