aboutsummaryrefslogblamecommitdiff
path: root/music_sampler.spec
blob: 3c85a2ac298e9155d8cfbbb6c82607c8e949eb12 (plain) (tree)
1
2
3
4
5
6
7



                      
                                  
                           
                                                                      



















                                           
                               



                        
# -*- mode: python -*-

block_cipher = None

a = Analysis(['music_sampler.py'],
             binaries=None,
             datas=[('config.yml', '.'), ('Ubuntu-Regular.ttf', '.')],
             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 )