@@ -6,55 +6,51 @@ datas += collect_data_files('shamir_mnemonic')
66datas += collect_data_files ('slip39' )
77
88
9- block_cipher = None
9+ a = Analysis (
10+ ['SLIP-39.py' ],
11+ pathex = [],
12+ binaries = [],
13+ datas = datas ,
14+ hiddenimports = ['slip39' ],
15+ hookspath = [],
16+ hooksconfig = {},
17+ runtime_hooks = [],
18+ excludes = [],
19+ noarchive = False ,
20+ )
21+ pyz = PYZ (a .pure )
1022
11-
12- a = Analysis (['SLIP-39.py' ],
13- pathex = [],
14- binaries = [],
15- datas = datas ,
16- hiddenimports = ['ipaddress' ],
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- [],
31- exclude_binaries = True ,
32- name = 'SLIP-39' ,
33- debug = False ,
34- bootloader_ignore_signals = False ,
35- strip = False ,
36- upx = True ,
37- console = False ,
38- disable_windowed_traceback = False ,
39- target_arch = None ,
40- codesign_identity = 'Developer ID Application: Perry Kundert (ZD8TVTCXDS)' ,
41- entitlements_file = './SLIP-39.metadata/entitlements.plist' )
42- coll = COLLECT (exe ,
43- a .binaries ,
44- a .zipfiles ,
45- a .datas ,
46- strip = False ,
47- upx = True ,
48- upx_exclude = [],
49- name = 'SLIP-39' )
50- app = BUNDLE (coll ,
51- name = 'SLIP-39.app' ,
52- icon = 'images/SLIP-39.icns' ,
53- version = '11.0.2' ,
54- info_plist = {
55- 'CFBundleVersion' :'11.0.2' ,
56- 'CFBundlePackageType' :'APPL' ,
57- 'LSApplicationCategoryType' :'public.app-category.finance' ,
58- 'LSMinimumSystemVersion' :'10.15.0' ,
59- },
60- bundle_identifier = 'ca.kundert.perry.SLIP39' )
23+ exe = EXE (
24+ pyz ,
25+ a .scripts ,
26+ a .binaries ,
27+ a .datas ,
28+ [],
29+ name = 'SLIP-39' ,
30+ debug = False ,
31+ bootloader_ignore_signals = False ,
32+ strip = False ,
33+ upx = True ,
34+ upx_exclude = [],
35+ runtime_tmpdir = None ,
36+ console = False ,
37+ disable_windowed_traceback = False ,
38+ argv_emulation = False ,
39+ target_arch = None ,
40+ codesign_identity = 'DDB5489E29389E9081E0A2FD83B6555D1B101829' ,
41+ entitlements_file = './SLIP-39.metadata/entitlements.plist' ,
42+ )
43+ app = BUNDLE (
44+ exe ,
45+ name = 'SLIP-39.app' ,
46+ icon = 'images/SLIP-39.icns' ,
47+ version = '11.0.2' ,
48+ info_plist = {
49+ 'CFBundleVersion' :'11.0.2' ,
50+ 'CFBundlePackageType' :'APPL' ,
51+ 'LSApplicationCategoryType' :'public.app-category.utilities' ,
52+ 'LSMinimumSystemVersion' :'10.15.0' ,
53+ 'NSHumanReadableCopyright' :"Copyright © 2023 Perry Kundert." ,
54+ },
55+ bundle_identifier = 'ca.kundert.perry.SLIP39' ,
56+ )
0 commit comments