I've written a PyObjC application that depends on the Python paramiko (ssh) library. Is there a way that I can add the third-party library to my application so that users do not need to sudo easy_install paramiko
before running the application?
I can see that it is possible to add the python framework to my project, but I don't think that'd include what is in my /Library/Python/2.5/site-packages/paramiko path. Alternatively, as the project is pure python, I imagine I can just incorporate it into my code, but that really doesn't seem like a proper way to include a library (and I'd be interested in knowing what to do if the library I needed were not pure python).
Is there a good way to include a third-party python library in a PyObjC application?
While I am using XCode 3.1.4 on OS X 10.5.8, instructions for other versions of XCode should be fine.