File tree Expand file tree Collapse file tree 2 files changed +69
-0
lines changed Expand file tree Collapse file tree 2 files changed +69
-0
lines changed Original file line number Diff line number Diff line change 1+ # -*- mode: python ; coding: utf-8 -*-
2+
3+ block_cipher = None
4+
5+
6+ a = Analysis (['/home/pi/CircuitPython-Bundle-Manager/main.py' ],
7+ pathex = ['/home/pi/CircuitPython-Bundle-Manager/main.py' ],
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+ noarchive = False )
18+ pyz = PYZ (a .pure , a .zipped_data ,
19+ cipher = block_cipher )
20+ exe = EXE (pyz ,
21+ a .scripts ,
22+ [],
23+ exclude_binaries = True ,
24+ name = 'CircuitPython Bundle Manager' ,
25+ debug = False ,
26+ bootloader_ignore_signals = False ,
27+ strip = False ,
28+ upx = True ,
29+ console = False )
30+ coll = COLLECT (exe ,
31+ a .binaries ,
32+ a .zipfiles ,
33+ a .datas ,
34+ strip = False ,
35+ upx = True ,
36+ upx_exclude = [],
37+ name = 'CircuitPython Bundle Manager' ,)
Original file line number Diff line number Diff line change 1+ # -*- mode: python ; coding: utf-8 -*-
2+
3+ block_cipher = None
4+
5+
6+ a = Analysis (['/home/pi/CircuitPython-Bundle-Manager/main.py' ],
7+ pathex = ['/home/pi/CircuitPython-Bundle-Manager/main.py' ],
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+ noarchive = False )
18+ pyz = PYZ (a .pure , a .zipped_data ,
19+ cipher = block_cipher )
20+ exe = EXE (pyz ,
21+ a .scripts ,
22+ a .binaries ,
23+ a .zipfiles ,
24+ a .datas ,
25+ [],
26+ exclude_binaries = True ,
27+ name = 'CircuitPython Bundle Manager' ,
28+ debug = False ,
29+ bootloader_ignore_signals = False ,
30+ strip = False ,
31+ upx = True ,
32+ console = False )
You can’t perform that action at this time.
0 commit comments