0001"""\
0002Paster create template for creating your own authentication methods.
0003"""
0004from paste.script.templates import BasicPackage
0005
0006class AuthenticatePlugin(BasicPackage):
0007 _template_dir = 'authenticate'
0008 summary = "An AuthKit authenticate middleware plugin"