Changeset 3619
- Timestamp:
- 05/06/08 06:31:26 (7 months ago)
- Files:
-
- traccasplugin/0.11/README (added)
- traccasplugin/0.11/setup.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
traccasplugin/0.11/setup.py
r3589 r3619 1 1 #!/usr/bin/env python 2 2 # -*- coding: iso-8859-1 -*- 3 import os 3 4 4 5 from setuptools import setup … … 6 7 setup( 7 8 name = 'TracCAS', 8 version = '2.0 ',9 version = '2.0.1', 9 10 packages = ['traccas'], 10 11 … … 12 13 author_email = 'noah@coderanger.net', 13 14 description = 'A modified authentication plugin to use the Yale CAS system.', 15 long_description = open(os.path.join(os.path.dirname(__file__), 'README')).read(), 14 16 license = 'BSD', 15 keywords = 'trac plugin cas authentication',16 url = 'http://trac-hacks.org/wiki/TracC ASPlugin',17 keywords = 'trac 0.11 plugin cas authentication', 18 url = 'http://trac-hacks.org/wiki/TracCasPlugin', 17 19 18 20 install_requires = ['Trac'],
