Include openssl in app
问题 I am trying to build a standalone version of Bitmessage for OS X. So far, I have managed to include PyQt4 in the build by having the following setup.py: from setuptools import setup APP = ['bitmessagemain.py'] DATA_FILES = [] OPTIONS = {'argv_emulation': True, 'iconfile': '/Users/jackson/Desktop/Bitmessagelogo-reduced.icns', 'includes': ['PyQt4']} setup( app=APP, data_files=DATA_FILES, options={'py2app': OPTIONS}, setup_requires=['py2app'], ) I can't seem to figure out how to bundle openssl