| 1234567891011121314151617181920212223242526272829303132333435363738394041 | # -*- mode: python -*-block_cipher = Nonea = Analysis(['bin/docker-compose'],             pathex=['.'],             hiddenimports=[],             hookspath=None,             runtime_hooks=None,             cipher=block_cipher)pyz = PYZ(a.pure, cipher=block_cipher)exe = EXE(pyz,          a.scripts,          a.binaries,          a.zipfiles,          a.datas,          [            (                'compose/config/config_schema_v1.json',                'compose/config/config_schema_v1.json',                'DATA'            ),            (                'compose/config/config_schema_v2.0.json',                'compose/config/config_schema_v2.0.json',                'DATA'            ),            (                'compose/GITSHA',                'compose/GITSHA',                'DATA'            )          ],          name='docker-compose',          debug=False,          strip=None,          upx=True,          console=True)
 |