What Is The Best Practice For Bundling Third Party Libraries With Your Python Project? (for Users With No Internet)
I'm trying to build a project which includes a few open source third party libraries, but I want to bundle my distribution with said libraries - because I expect my users to want t
Solution 1:
buildout is good solution for building and distributing Python software.
Solution 2:
You could have a look at the inner workings of virtualenv to get some inspiration how go about this. Maybe you can resuse code from there.
Post a Comment for "What Is The Best Practice For Bundling Third Party Libraries With Your Python Project? (for Users With No Internet)"