Changeset 536

Show
Ignore:
Timestamp:
03/22/06 12:41:27 (3 years ago)
Author:
coderanger
Message:

AuthFormPlugin:

Switching to entry points.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • authformplugin/0.9/setup.py

    r322 r536  
     1#!/usr/bin/env python 
     2# -*- coding: iso-8859-1 -*- 
     3 
    14from setuptools import setup 
    25 
    3 PACKAGE = 'AuthForm' 
    4 VERSION = '0.1' 
     6setup( 
     7    name = 'AuthForm', 
     8    version = '0.1', 
     9    packages = ['authform'], 
     10    package_data = { 'authform': ['templates/*.cs' ] }, 
    511 
    6 setup(name=PACKAGE, version=VERSION, packages=['authform'], 
    7         package_data={'authform' : ['templates/*.cs',]}) 
     12    author = "Noah Kantrowitz", 
     13    author_email = "coderanger@yahoo.com", 
     14    description = "Implements form-based login against HTTP authentication", 
     15    license = "BSD", 
     16    keywords = "trac authentication form", 
     17    url = "http://trac-hacks.org/", 
     18 
     19    entry_points = { 
     20        'trac.plugins': [ 
     21            'authform.web_ui = authform.web_ui' 
     22        ] 
     23    } 
     24