FlatCAM.spec 864 B

123456789101112131415161718192021222324252627282930313233
  1. # -*- mode: python -*-
  2. block_cipher = None
  3. a = Analysis(['FlatCAM.py'],
  4. pathex=['/home/jpcaram/flatcam'],
  5. binaries=None,
  6. datas=[('share/*', 'share')],
  7. hiddenimports=[],
  8. hookspath=[],
  9. runtime_hooks=[],
  10. excludes=[],
  11. win_no_prefer_redirects=False,
  12. win_private_assemblies=False,
  13. cipher=block_cipher)
  14. pyz = PYZ(a.pure, a.zipped_data,
  15. cipher=block_cipher)
  16. exe = EXE(pyz,
  17. a.scripts,
  18. exclude_binaries=True,
  19. name='FlatCAM',
  20. debug=False,
  21. strip=False,
  22. upx=True,
  23. console=True )
  24. coll = COLLECT(exe,
  25. a.binaries,
  26. a.zipfiles,
  27. a.datas,
  28. strip=False,
  29. upx=True,
  30. name='FlatCAM')