It seems like PasteScript\'s paster create
functionality is just about the only widely used framework for building/generating a project skeleton within python. I\'
"Skeleton" looks very promising. http://pypi.python.org/pypi/skeleton/
There is also the Python Packager that I just ran across while searching for these types of tools. It appears to have a fairly narrow use case, but it might nice for those looking for help pulling OSS license files.
As I'm in the process of releasing mr.bob 0.1a6, it is mostly feature complete as PasteScript. It is a general purpose directory skeleton generator that shouldn't require Python knowledge to write new skeletons.
Documentation: http://mrbob.readthedocs.org/en/latest/
I'm rather partial to cookiecutter. It works for Python 2.7, 3.3, 3.4, and PyPy on Linux, Mac OS X, and Windows. It's fully documented, actively maintained, well tested, and really easy to use. Here is my blog entry on it. It even has its own Stack Overflow tag: https://stackoverflow.com/questions/tagged/cookiecutter
It depends on your framework. For Django applications, you use django-admin.py startproject mysite
. For developing GUI applications on Linux, there's Ubuntu's Quickly, which also creates a skeleton project. For Paste projects, you use paster.
There's not really a general purpose tool for what you're doing though. It depends on the framework, and usually, those scripts come with particular frameworks. And for what it's worth, PyCharm (an IDE) includes some project templates for things like Google App Engine too.