view buttercup/__init__.py @ 45:048e391423a1

note about git config
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 05 Apr 2013 13:37:24 -0700
parents 86c3c0d4d434
children
line wrap: on
line source

from paste.script import templates

var = templates.var

class buttercup(templates.Template):
    _template_dir = 'template'
    summary = 'paste template for creating instances of the buttercup flower website pattern'
    vars = [
        var('description', 'One-line description of the package'),
        var('author', 'Author name'),
        var('author_email', 'Author email'),
        var('url', 'URL of homepage'),
        ] 

    def pre(self, command, output_dir, vars):
        """
        called before the template is applied
        """
        # XXX broken for now
        # src = sources()
        # vars['install_requires'] = '\n'.join([repr(s[0])+','
        #                                    for s in src])

    def post(self, command, output_dir, vars):
        """
        called after the template is applied
        """