File tree Expand file tree Collapse file tree 1 file changed +57
-0
lines changed
Expand file tree Collapse file tree 1 file changed +57
-0
lines changed Original file line number Diff line number Diff line change 1+ # -*- mode: python ; coding: utf-8 -*-
2+
3+
4+ block_cipher = None
5+
6+ added_files = [
7+ ('html' , 'html' ),
8+ ('css' , 'css' ),
9+ ('js' , 'js' ),
10+ ('images' , 'images' ),
11+ ('includes' , 'includes' )
12+ ]
13+
14+ a = Analysis (
15+ ['webmapper.py' ],
16+ pathex = [],
17+ binaries = [],
18+ datas = added_files ,
19+ hiddenimports = [],
20+ hookspath = [],
21+ hooksconfig = {},
22+ runtime_hooks = [],
23+ excludes = [],
24+ win_no_prefer_redirects = False ,
25+ win_private_assemblies = False ,
26+ cipher = block_cipher ,
27+ noarchive = False ,
28+ )
29+ pyz = PYZ (a .pure , a .zipped_data , cipher = block_cipher )
30+
31+ exe = EXE (
32+ pyz ,
33+ a .scripts ,
34+ [],
35+ exclude_binaries = True ,
36+ name = 'webmapper' ,
37+ debug = False ,
38+ bootloader_ignore_signals = False ,
39+ strip = False ,
40+ upx = True ,
41+ console = True ,
42+ disable_windowed_traceback = False ,
43+ argv_emulation = False ,
44+ target_arch = None ,
45+ codesign_identity = None ,
46+ entitlements_file = None ,
47+ )
48+ coll = COLLECT (
49+ exe ,
50+ a .binaries ,
51+ a .zipfiles ,
52+ a .datas ,
53+ strip = False ,
54+ upx = True ,
55+ upx_exclude = [],
56+ name = 'webmapper' ,
57+ )
You can’t perform that action at this time.
0 commit comments