tags:

views:

391

answers:

2

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?

A: 

Check this out!

Deniz Dogan
+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