docker-compose.spec 512 B

123456789101112131415161718192021222324
  1. # -*- mode: python -*-
  2. block_cipher = None
  3. a = Analysis(['bin/docker-compose'],
  4. pathex=['.'],
  5. hiddenimports=[],
  6. hookspath=None,
  7. runtime_hooks=None,
  8. cipher=block_cipher)
  9. pyz = PYZ(a.pure,
  10. cipher=block_cipher)
  11. exe = EXE(pyz,
  12. a.scripts,
  13. a.binaries,
  14. a.zipfiles,
  15. a.datas,
  16. name='docker-compose',
  17. debug=False,
  18. strip=None,
  19. upx=True,
  20. console=True )