Py2app: Operation not permitted
I want to create an application called 'dodgeball' and I have my main script (which uses pygame), and my setup.py script. I need an image named ball.bmp that I need as well. Inside my setup.py script I have the following code: from setuptools import setup APP = ['dodgeball.py'] DATA_FILES = ["ball.bmp"] OPTIONS = {'argv_emulation': True} setup( app=APP, data_files=DATA_FILES, options={'py2app': OPTIONS}, setup_requires=['py2app'], ) Whenever I try to make the application using the following stuff in Terminal: python setup.py py2app everything works up to *** creating application bundle: