I am writing a console application in python that will consist of several modules, each of which contains a couple of hundred lines of code.
For development, it would be nice to modulate the program, but for distribution, I like the idea of publishing the program as one python script.
Are there any good scripts to smooth out multiple python modules?
I know that in the end I have to venture into a complicated mess, which is setuptools, dpkg, etc., but I am not yet ready to invest this effort.
source
share