I am writing a console application in python that will consist of a handful of modules, each with a couple hundred lines of code.
For development it would be nice to modularize the program, but for distribution I like the idea of being able to post the program as a single python script.
Are there any good scripts out there for flattening multiple python modules?
I know that eventually I should brave the complicated mess that is setuptools, dpkg, etc... but I'm not ready to invest that effort yet.