File: templates.py

package info (click to toggle)
pastewebkit 1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 536 kB
  • ctags: 662
  • sloc: python: 3,346; makefile: 41
file content (12 lines) | stat: -rw-r--r-- 272 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
import os
from paste.script.templates import Template

class WebKit(Template):

    _template_dir = 'paster_templates/webkit'
    summary = "A Paste WebKit web application"

    egg_plugins = ['PasteWebKit']

    required_templates = ['PasteDeploy#paste_deploy']