File tree 2 files changed +50
-3
lines changed
2 files changed +50
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ block_cipher = None
5
5
6
6
# include files
7
7
cairocffi_version_path = ("/opt/miniconda3/envs/contract_generator_pyside2/lib/python3.6/site-packages/cairocffi/VERSION" , "cairocffi" )
8
- # weasyprint_version_path = ("/opt/miniconda3/envs/contract_generator_pyside2/lib/python3.6/site-packages/weasyprint/VERSION", "weasyprint")
8
+ weasyprint_version_path = ("/opt/miniconda3/envs/contract_generator_pyside2/lib/python3.6/site-packages/weasyprint/VERSION" , "weasyprint" )
9
9
pyphen_dir = ("/opt/miniconda3/envs/contract_generator_pyside2/lib/python3.6/site-packages/pyphen/dictionaries" , "pyphen/dictionaries" )
10
10
cairosvg_version_path = ("/opt/miniconda3/envs/contract_generator_pyside2/lib/python3.6/site-packages/cairosvg/VERSION" , "cairosvg" )
11
11
font_path = ("/System/Library/Fonts/Helvetica.ttc" , "font" )
@@ -14,11 +14,10 @@ a = Analysis(['contract_generator.py'],
14
14
pathex = ['/Users/yhh/github-repo/contract-generator-pyside2' ],
15
15
binaries = [],
16
16
datas = [cairocffi_version_path ,
17
- # weasyprint_version_path,
17
+ weasyprint_version_path ,
18
18
pyphen_dir ,
19
19
cairosvg_version_path ,
20
20
font_path ],
21
- #hiddenimports=["weasyprint"],
22
21
hiddenimports = [],
23
22
hookspath = [],
24
23
runtime_hooks = [],
Original file line number Diff line number Diff line change
1
+ # -*- mode: python ; coding: utf-8 -*-
2
+
3
+
4
+ block_cipher = None
5
+
6
+ # include files
7
+ cairocffi_version_path = ("/opt/miniconda3/envs/contract_generator_pyside2/lib/python3.6/site-packages/cairocffi/VERSION" , "cairocffi" )
8
+ weasyprint_version_path = ("/opt/miniconda3/envs/contract_generator_pyside2/lib/python3.6/site-packages/weasyprint/VERSION" , "weasyprint" )
9
+ pyphen_dir = ("/opt/miniconda3/envs/contract_generator_pyside2/lib/python3.6/site-packages/pyphen/dictionaries" , "pyphen/dictionaries" )
10
+ cairosvg_version_path = ("/opt/miniconda3/envs/contract_generator_pyside2/lib/python3.6/site-packages/cairosvg/VERSION" , "cairosvg" )
11
+ font_path = ("/System/Library/Fonts/Helvetica.ttc" , "font" )
12
+
13
+ a = Analysis (['contract_generator.py' ],
14
+ pathex = ['/Users/yhh/github-repo/contract-generator-pyside2' ],
15
+ binaries = [],
16
+ datas = [cairocffi_version_path ,
17
+ weasyprint_version_path ,
18
+ pyphen_dir ,
19
+ cairosvg_version_path ,
20
+ font_path ],
21
+ hiddenimports = [],
22
+ hookspath = [],
23
+ runtime_hooks = [],
24
+ excludes = [],
25
+ win_no_prefer_redirects = False ,
26
+ win_private_assemblies = False ,
27
+ cipher = block_cipher ,
28
+ noarchive = False )
29
+ pyz = PYZ (a .pure , a .zipped_data ,
30
+ cipher = block_cipher )
31
+ exe = EXE (pyz ,
32
+ a .scripts ,
33
+ [],
34
+ exclude_binaries = True ,
35
+ name = 'contract_generator' ,
36
+ debug = False ,
37
+ bootloader_ignore_signals = False ,
38
+ strip = False ,
39
+ upx = True ,
40
+ console = True )
41
+ coll = COLLECT (exe ,
42
+ a .binaries ,
43
+ a .zipfiles ,
44
+ a .datas ,
45
+ strip = False ,
46
+ upx = True ,
47
+ upx_exclude = [],
48
+ name = 'contract_generator' )
You can’t perform that action at this time.
0 commit comments