docker-compose.spec 975 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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, cipher=block_cipher)
  10. exe = EXE(pyz,
  11. a.scripts,
  12. a.binaries,
  13. a.zipfiles,
  14. a.datas,
  15. [
  16. (
  17. 'compose/config/config_schema_v1.json',
  18. 'compose/config/config_schema_v1.json',
  19. 'DATA'
  20. ),
  21. (
  22. 'compose/config/config_schema_v2.0.json',
  23. 'compose/config/config_schema_v2.0.json',
  24. 'DATA'
  25. ),
  26. (
  27. 'compose/GITSHA',
  28. 'compose/GITSHA',
  29. 'DATA'
  30. )
  31. ],
  32. name='docker-compose',
  33. debug=False,
  34. strip=None,
  35. upx=True,
  36. console=True)