diff options
| author | Debulois <quentin@debulois.fr> | 2022-04-29 11:15:04 +0200 |
|---|---|---|
| committer | Debulois <quentin@debulois.fr> | 2022-04-29 11:15:04 +0200 |
| commit | afd6fb901b7e8f99cdb1bb0d2134cec2d6cebc3b (patch) | |
| tree | f114b68fc1ede894da52e688ce29054b2774edc4 /src/main.spec | |
| parent | 503d62407ce57bebfec5e7134b603d50e58c48da (diff) | |
Ajout de la gestion de ses infos
Diffstat (limited to 'src/main.spec')
| -rw-r--r-- | src/main.spec | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/src/main.spec b/src/main.spec new file mode 100644 index 0000000..47ce1af --- /dev/null +++ b/src/main.spec @@ -0,0 +1,51 @@ +# -*- mode: python ; coding: utf-8 -*- + + +block_cipher = None + + +a = Analysis( + ['main.py'], + pathex=[], + binaries=[], + datas=[], + hiddenimports=[], + hookspath=[], + hooksconfig={}, + runtime_hooks=[], + excludes=[], + win_no_prefer_redirects=False, + win_private_assemblies=False, + cipher=block_cipher, + noarchive=False, +) +pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) + +exe = EXE( + pyz, + a.scripts, + [], + exclude_binaries=True, + name='main', + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + console=False, + disable_windowed_traceback=False, + argv_emulation=False, + target_arch=None, + codesign_identity=None, + entitlements_file=None, + icon='gui\\ressources\\icon.ico', +) +coll = COLLECT( + exe, + a.binaries, + a.zipfiles, + a.datas, + strip=False, + upx=True, + upx_exclude=[], + name='main', +) |
