fjarri
fjarri

Reputation: 9726

How to transform Python 3 script to Mac OS application bundle?

Is there currently a way to create an application bundle from Py3k script? py2app uses Carbon package and therefore, as far as I understand, cannot be ported to py3k - Carbon development was terminated.

Upvotes: 1

Views: 779

Answers (2)

Azeem.Butt
Azeem.Butt

Reputation: 5869

There's always Platypus and PyObjC

http://www.sveinbjorn.org/platypus

http://pyobjc.sourceforge.net

Upvotes: 1

Alex Martelli
Alex Martelli

Reputation: 882791

I have not checked if that's true, but cx_freeze 4.1 claims to support Python 3.1 (cx_freeze in general has long supported Mac OS X, as well as Windows and Linux, and I believe that also applies to the recent 4.1 release).

Upvotes: 0

Related Questions