I'm making a Python/PyObjC bundle to use some Twisted features from an Objective-C application.
I need to install a Core Foundation reactor in my Python App:
from twisted.internet import cfreactor
cfreactor.install()
The problem is that when I build a bundle with py2app, the required CFNetwork framework never appears inside my bundle and when I load the bundle from my Objetive-C application it crash.
There is any way to force link the CFNetwork framework? Why this framework is not added automatly?