X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=music_sampler.spec;fp=music_sampler.spec;h=a56c2dd0f051076f11b63c9a8e64b68a6594aa58;hb=d8046b94a52262d1453104de2df138a952cb4548;hp=fca40058fe09df989b2ea67796089924ed58192e;hpb=bb69f62e140efde8e93f7b62bf8723113bf30b06;p=perso%2FImmae%2FProjets%2FPython%2FMusicSampler.git diff --git a/music_sampler.spec b/music_sampler.spec index fca4005..a56c2dd 100644 --- a/music_sampler.spec +++ b/music_sampler.spec @@ -1,36 +1,17 @@ # -*- mode: python -*- +from kivy.tools.packaging.pyinstaller_hooks import get_deps_minimal, hookspath, runtime_hooks -block_cipher = None +excluded_and_hidden_modules = get_deps_minimal(video=None, camera=None, audio=None, clipboard=None, spelling=None) +excluded_and_hidden_modules['hiddenimports'] += [ 'six', 'packaging', 'packaging.version', 'packaging.specifiers', 'packaging.requirements'] a = Analysis(['music_sampler.py'], binaries=None, datas=[ - ('config.yml', '.'), ('fonts/*', 'fonts'), ('musicsampler.kv', '.') ], - hiddenimports=[ - 'six', - 'packaging', - 'packaging.version', - 'packaging.specifiers', - 'packaging.requirements' - ], - hookspath=[], - runtime_hooks=[], - excludes=[], - win_no_prefer_redirects=False, - win_private_assemblies=False, - cipher=block_cipher) -pyz = PYZ(a.pure, a.zipped_data, - cipher=block_cipher) -exe = EXE(pyz, - a.scripts, - a.binaries, - a.zipfiles, - a.datas, - name='music_sampler', - debug=False, - strip=False, - upx=True, - console=True ) + hookspath=hookspath(), + runtime_hooks=runtime_hooks(), + **excluded_and_hidden_modules) +pyz = PYZ(a.pure, a.zipped_data) +exe = EXE(pyz, a.scripts, a.binaries, a.zipfiles, a.datas, name='music_sampler')