File tree Expand file tree Collapse file tree 2 files changed +50
-1
lines changed Expand file tree Collapse file tree 2 files changed +50
-1
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ exe = EXE(pyz,
40
40
runtime_tmpdir = None ,
41
41
console = False ,
42
42
disable_windowed_traceback = False ,
43
- target_arch = None ,
43
+ target_arch = "arm64" ,
44
44
codesign_identity = None ,
45
45
entitlements_file = None )
46
46
app = BUNDLE (exe ,
Original file line number Diff line number Diff line change
1
+ # -*- mode: python ; coding: utf-8 -*-
2
+ from PyInstaller .utils .hooks import collect_data_files
3
+
4
+ datas = [('pyproject.toml' , '.' )]
5
+ datas += collect_data_files ('ciscoreset' )
6
+ datas += collect_data_files ('ciscoaxl' )
7
+
8
+
9
+ block_cipher = None
10
+
11
+
12
+ a = Analysis (['ciscoreset/gui.py' ],
13
+ pathex = ['/Users/RCARTE4/devel/cisco-voip-device-reset' ],
14
+ binaries = [],
15
+ datas = datas ,
16
+ hiddenimports = [],
17
+ hookspath = [],
18
+ hooksconfig = {},
19
+ runtime_hooks = [],
20
+ excludes = [],
21
+ win_no_prefer_redirects = False ,
22
+ win_private_assemblies = False ,
23
+ cipher = block_cipher ,
24
+ noarchive = False )
25
+ pyz = PYZ (a .pure , a .zipped_data ,
26
+ cipher = block_cipher )
27
+
28
+ exe = EXE (pyz ,
29
+ a .scripts ,
30
+ a .binaries ,
31
+ a .zipfiles ,
32
+ a .datas ,
33
+ [],
34
+ name = 'Cisco VoIP Device Reset' ,
35
+ debug = False ,
36
+ bootloader_ignore_signals = False ,
37
+ strip = False ,
38
+ upx = True ,
39
+ upx_exclude = [],
40
+ runtime_tmpdir = None ,
41
+ console = False ,
42
+ disable_windowed_traceback = False ,
43
+ target_arch = "x86_64" ,
44
+ codesign_identity = None ,
45
+ entitlements_file = None )
46
+ app = BUNDLE (exe ,
47
+ name = 'Cisco VoIP Device Reset.app' ,
48
+ icon = None ,
49
+ bundle_identifier = None )
You can’t perform that action at this time.
0 commit comments