File tree 1 file changed +23
-15
lines changed
1 file changed +23
-15
lines changed Original file line number Diff line number Diff line change 1
- # -*- mode: python -*-
1
+ # -*- mode: python ; coding: utf-8 -*-
2
2
3
3
block_cipher = None
4
-
5
4
added_files = [
6
5
('./gui' , 'gui' ),
7
6
]
8
7
9
8
a = Analysis (['./src/index.py' ],
10
9
pathex = ['./dist' ],
11
- binaries = None ,
10
+ binaries = [] ,
12
11
datas = added_files ,
13
12
hiddenimports = ['clr' ],
13
+ hookspath = [],
14
+ hooksconfig = {},
15
+ runtime_hooks = [],
14
16
excludes = [],
15
17
win_no_prefer_redirects = False ,
16
18
win_private_assemblies = False ,
19
+ cipher = block_cipher ,
20
+ noarchive = False )
21
+ pyz = PYZ (a .pure , a .zipped_data ,
17
22
cipher = block_cipher )
18
- pyz = PYZ ( a . pure , a . zipped_data , cipher = block_cipher )
23
+
19
24
exe = EXE (pyz ,
20
25
a .scripts ,
21
- exclude_binaries = True ,
22
- name = 'pywebview-react-app' ,
26
+ a .binaries ,
27
+ a .zipfiles ,
28
+ a .datas ,
29
+ [],
30
+ name = 'pywebview-react' ,
23
31
debug = False ,
32
+ bootloader_ignore_signals = False ,
24
33
strip = True ,
25
- #icon='./src/assets/\logo.ico',
26
34
upx = True ,
27
- console = False ) # set this to see error output of the executable
28
- coll = COLLECT ( exe ,
29
- a . binaries ,
30
- a . zipfiles ,
31
- a . datas ,
32
- strip = False ,
33
- upx = False ,
34
- name = 'pywebview-react-app' )
35
+ upx_exclude = [],
36
+ #icon='./src/assets/logo.ico' ,
37
+ runtime_tmpdir = None ,
38
+ console = False ,
39
+ disable_windowed_traceback = False ,
40
+ target_arch = None ,
41
+ codesign_identity = None ,
42
+ entitlements_file = None )
You can’t perform that action at this time.
0 commit comments