File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # -*- mode: python -*-
2+
3+ block_cipher = None
4+
5+
6+ a = Analysis (['nodemcu-pyflasher.py' ],
7+ binaries = None ,
8+ datas = [("images" , "images" )],
9+ hiddenimports = [],
10+ hookspath = [],
11+ runtime_hooks = [],
12+ excludes = [],
13+ win_no_prefer_redirects = False ,
14+ win_private_assemblies = False ,
15+ cipher = block_cipher )
16+ pyz = PYZ (a .pure , a .zipped_data ,
17+ cipher = block_cipher )
18+ exe = EXE (pyz ,
19+ a .scripts ,
20+ a .binaries ,
21+ a .zipfiles ,
22+ a .datas ,
23+ name = 'NodeMCU-PyFlasher' ,
24+ debug = False ,
25+ strip = False ,
26+ upx = True ,
27+ console = False , icon = 'images/icon-256.icns' )
28+ app = BUNDLE (exe ,
29+ name = 'NodeMCU-PyFlasher.app' ,
30+ icon = './images/icon-256.icns' ,
31+ bundle_identifier = 'com.frightanic.nodemcu-pyflasher' )
Original file line number Diff line number Diff line change 1+ # -*- mode: python -*-
2+
3+ block_cipher = None
4+
5+ a = Analysis (['nodemcu-pyflasher.py' ],
6+ binaries = [],
7+ datas = [("images" , "images" )],
8+ hiddenimports = [],
9+ hookspath = [],
10+ runtime_hooks = [],
11+ excludes = [],
12+ win_no_prefer_redirects = False ,
13+ win_private_assemblies = False ,
14+ cipher = block_cipher )
15+ pyz = PYZ (a .pure , a .zipped_data ,
16+ cipher = block_cipher )
17+ exe = EXE (pyz ,
18+ a .scripts ,
19+ a .binaries ,
20+ a .zipfiles ,
21+ a .datas ,
22+ name = 'NodeMCU-PyFlasher' ,
23+ debug = False ,
24+ strip = False ,
25+ upx = True ,
26+ console = False , icon = 'images\\ icon-256.ico' )
Original file line number Diff line number Diff line change 11pyinstaller --log-level=DEBUG ^
2- --windowed ^
3- --icon=.\images\icon-256.png ^
4- --name=" NodeMCU-PyFlasher" ^
52 --noconfirm ^
6- --onefile ^
7- nodemcu-pyflasher.py
3+ build-on-win.spec
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
2- rm -fr build dist
2+ # rm -fr build dist
33pyinstaller --log-level=DEBUG \
4- --windowed \
5- --icon=./images/icon-256.icns \
6- --name=" NodeMCU-PyFlasher" \
74 --noconfirm \
8- --onefile \
9- --osx-bundle-identifier=com.frightanic.nodemcu-pyflasher \
10- nodemcu-pyflasher.py
5+ build-on-mac.spec
You can’t perform that action at this time.
0 commit comments