From 7e375df5b11da3175b2e173e3ef40667b0d28f06 Mon Sep 17 00:00:00 2001 From: Debulois Quentin Date: Wed, 16 Sep 2020 14:31:02 +0200 Subject: Création d'une base correcte pour le projet en vue d'un vrai passage sur POO MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Redim.spec | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Redim.spec (limited to 'Redim.spec') diff --git a/Redim.spec b/Redim.spec new file mode 100644 index 0000000..90e7672 --- /dev/null +++ b/Redim.spec @@ -0,0 +1,35 @@ +# -*- mode: python ; coding: utf-8 -*- + +block_cipher = None + + +a = Analysis(['Redim/main.py'], + pathex=[], + binaries=[], + datas=[], + hiddenimports=['Pillow'], + hookspath=[], + 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, + a.binaries, + a.zipfiles, + a.datas, + [], + name='Redim', + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + upx_exclude=[], + runtime_tmpdir=None, + console=True , icon='Redim/Ressources/icon.ico') -- cgit v1.2.3