source: tracplugintemplatescript/0.11/trac_plugin_skel/__init__.py

Last change on this file was 3943, checked in by Jeff Hammel, 15 years ago

initial import of pastescript template for a trac plugin

File size: 394 bytes
Line 
1from paste.script import templates
2
3var = templates.var
4
5class TracPluginSkelTemplate(templates.Template):
6    _template_dir = 'template'
7    summary = "a plugin skeleton for trac"
8    vars = [
9        var('description', 'One-line description of the package'),
10        var('author', 'Author name'),
11        var('author_email', 'Author email'),
12        var('url', 'URL of homepage'),
13        ] 
Note: See TracBrowser for help on using the repository browser.