I have a Python program (with Django - does this matter?) that I want to 'bundle', if you like. How do I do this, in the same way one can create a .jar for Java?
+4
A:
You want to use the Python SetupTools. You create a description file (setup.py) and then building and creating the egg is a one-line command (similar to Make). Here's a nice presentation that will walk you through the details.
Craig Trader
2009-10-30 15:05:15