File tree Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Expand file tree Collapse file tree 1 file changed +47
-0
lines changed Original file line number Diff line number Diff line change
1
+ # -*- mode: python ; coding: utf-8 -*-
2
+
3
+ block_cipher = None
4
+
5
+
6
+ a = Analysis (['crypto.py' ],
7
+ binaries = [],
8
+ datas = [],
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
+ noarchive = False )
17
+ pyz = PYZ (a .pure , a .zipped_data ,
18
+ cipher = block_cipher )
19
+ exe = EXE (pyz ,
20
+ a .scripts ,
21
+ [],
22
+ exclude_binaries = True ,
23
+ name = 'Goodforbitcoin' ,
24
+ debug = False ,
25
+ bootloader_ignore_signals = False ,
26
+ strip = False ,
27
+ upx = True ,
28
+ console = False ,
29
+ icon = 'resources/icon.ico'
30
+ )
31
+ coll = COLLECT (exe ,
32
+ a .binaries ,
33
+ a .zipfiles ,
34
+ a .datas ,
35
+ strip = False ,
36
+ upx = True ,
37
+ upx_exclude = [],
38
+ name = 'Goodforbitcoin'
39
+ )
40
+ app = BUNDLE (coll ,
41
+ name = 'Goodforbitcoin.app' ,
42
+ icon = 'resources/icon.icns' ,
43
+ bundle_identifier = 'com.learnpyqt.Goodforbitcoin' ,
44
+ info_plist = {
45
+ 'NSHighResolutionCapable' : 'True'
46
+ },
47
+ )
You can’t perform that action at this time.
0 commit comments