CursorKeepAlive.mac.spec 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # -*- mode: python ; coding: utf-8 -*-
  2. a = Analysis(
  3. ['cursor_pro_keep_alive.py'],
  4. pathex=[],
  5. binaries=[],
  6. datas=[
  7. ('turnstilePatch', 'turnstilePatch'),
  8. ('cursor_auth_manager.py', '.'),
  9. ],
  10. hiddenimports=[
  11. 'cursor_auth_manager'
  12. ],
  13. hookspath=[],
  14. hooksconfig={},
  15. runtime_hooks=[],
  16. excludes=[],
  17. noarchive=False,
  18. )
  19. pyz = PYZ(a.pure)
  20. exe = EXE(
  21. pyz,
  22. a.scripts,
  23. a.binaries,
  24. a.datas,
  25. [],
  26. name='CursorPro',
  27. debug=False,
  28. bootloader_ignore_signals=False,
  29. strip=False,
  30. upx=True,
  31. upx_exclude=[],
  32. runtime_tmpdir=None,
  33. console=True,
  34. disable_windowed_traceback=False,
  35. argv_emulation=False,
  36. target_arch=None,
  37. codesign_identity=None,
  38. entitlements_file=None,
  39. icon=None
  40. )
  41. app = BUNDLE(
  42. exe,
  43. name='CursorPro.app',
  44. icon=None,
  45. bundle_identifier='com.yourcompany.cursorpro',
  46. info_plist={
  47. 'CFBundleShortVersionString': '1.0.0',
  48. 'CFBundleVersion': '1.0.0',
  49. 'NSHighResolutionCapable': True,
  50. 'LSBackgroundOnly': False,
  51. },
  52. )