Changeset 536
- Timestamp:
- 03/22/06 12:41:27 (3 years ago)
- Files:
-
- authformplugin/0.9/AuthForm.egg-info (deleted)
- authformplugin/0.9/setup.py (modified) (1 diff)
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 1 4 from setuptools import setup 2 5 3 PACKAGE = 'AuthForm' 4 VERSION = '0.1' 6 setup( 7 name = 'AuthForm', 8 version = '0.1', 9 packages = ['authform'], 10 package_data = { 'authform': ['templates/*.cs' ] }, 5 11 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 )
