Reputation: 93
I have a project in the form of binaries which can be distributed to other mac pcs. How to create an .app file for that project?
Thanks in advance
Upvotes: 0
Views: 261
Reputation: 188194
Take a look at py2app, it might solve your problem.
py2app is a Python setuptools command which will allow you to make standalone application bundles and plugins from Python scripts. py2app is similar in purpose and design to py2exe for Windows.
Upvotes: 2