diff options
author | navanchauhan <navanchauhan@gmail.com> | 2023-06-01 09:01:26 -0600 |
---|---|---|
committer | navanchauhan <navanchauhan@gmail.com> | 2023-06-01 09:01:26 -0600 |
commit | e74dfbac29243d1e1af672ae2bc499c20eae6123 (patch) | |
tree | 81ae8f8499400cea0048cebb78dbd382ae8ace7a /main.spec | |
parent | 11b5be19763246cf114d3f8de2383f085ce25ff7 (diff) |
fix docx template and add num companies
Diffstat (limited to 'main.spec')
-rw-r--r-- | main.spec | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -24,10 +24,20 @@ a = Analysis( noarchive=False, ) pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) +splash = Splash( + 'assets/GentryCapitalRGB.jpg', + binaries=a.binaries, + datas=a.datas, + text_pos=None, + text_size=12, + minify_script=True, + always_on_top=True, +) exe = EXE( pyz, a.scripts, + splash, [], exclude_binaries=True, name='main', @@ -47,6 +57,7 @@ coll = COLLECT( a.binaries, a.zipfiles, a.datas, + splash.binaries, strip=False, upx=True, upx_exclude=[], |