Comment on How To Package Your Python CodeparentComments−borntyping13yIt sounds like you're trying to package an entire application, not a python package. If thats the case, maintaining and distributing it may be simplest to do with a git repository.−mercurial13yIn my limited experience, packaging works very well with Flask: http://flask.pocoo.org/docs/patterns/distribute/You just need a quickly whipped up Fabric script, and then you deploy remotely from the command line.
Comments
It sounds like you're trying to package an entire application, not a python package. If thats the case, maintaining and distributing it may be simplest to do with a git repository.
In my limited experience, packaging works very well with Flask: http://flask.pocoo.org/docs/patterns/distribute/
You just need a quickly whipped up Fabric script, and then you deploy remotely from the command line.