Alternatives to Python PasteScript's paster create?

后端 未结 5 1427
难免孤独
难免孤独 2021-02-04 09:46

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\'

相关标签:
5条回答
  • 2021-02-04 10:03

    "Skeleton" looks very promising. http://pypi.python.org/pypi/skeleton/

    0 讨论(0)
  • 2021-02-04 10:07

    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.

    0 讨论(0)
  • 2021-02-04 10:10

    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/

    0 讨论(0)
  • 2021-02-04 10:15

    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

    0 讨论(0)
  • 2021-02-04 10:25

    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.

    0 讨论(0)
提交回复
热议问题