@@ -5,6 +5,7 @@ datas = []
55datas += collect_data_files ('shamir_mnemonic' )
66datas += collect_data_files ('slip39' )
77
8+ block_cipher = None
89
910a = Analysis (
1011 ['SLIP-39.py' ],
@@ -16,9 +17,17 @@ a = Analysis(
1617 hooksconfig = {},
1718 runtime_hooks = [],
1819 excludes = [],
20+ win_no_prefer_redirects = False ,
21+ win_private_assemblies = False ,
22+ cipher = block_cipher ,
1923 noarchive = False ,
2024)
21- pyz = PYZ (a .pure )
25+
26+ pyz = PYZ (
27+ a .pure ,
28+ a .zipped_data ,
29+ cipher = block_cipher ,
30+ )
2231
2332exe = EXE (
2433 pyz ,
@@ -38,19 +47,28 @@ exe = EXE(
3847 argv_emulation = False ,
3948 target_arch = None ,
4049 codesign_identity = 'DDB5489E29389E9081E0A2FD83B6555D1B101829' ,
41- entitlements_file = './SLIP-39.metadata/entitlements.plist' ,
50+ entitlements_file = None ,
51+ icon = 'images/SLIP-39.icns' ,
4252)
53+
4354app = BUNDLE (
4455 exe ,
4556 name = 'SLIP-39.app' ,
4657 icon = 'images/SLIP-39.icns' ,
4758 version = '11.1.1' ,
4859 info_plist = {
60+ 'NSPrincipalClass' : 'NSApplication' ,
61+ 'NSAppleScriptEnabled' : False ,
62+ 'LSBackgroundOnly' : False ,
63+ 'NSRequiresAquaSystemAppearance' : 'No' ,
64+ 'CFBundleSupportedPlatforms' : ['MacOSX' ],
65+ 'CFBundleIdentifier' : 'ca.kundert.perry.SLIP39' ,
4966 'CFBundleVersion' :'11.1.1' ,
5067 'CFBundlePackageType' :'APPL' ,
5168 'LSApplicationCategoryType' :'public.app-category.utilities' ,
52- 'LSMinimumSystemVersion' :'10.15.0 ' ,
69+ 'LSMinimumSystemVersion' :'10.15' ,
5370 'NSHumanReadableCopyright' :"Copyright © 2023 Perry Kundert." ,
71+ 'ITSAppUsesNonExemptEncryption' : False ,
5472 },
5573 bundle_identifier = 'ca.kundert.perry.SLIP39' ,
5674)
0 commit comments