Changeset 3619

Show
Ignore:
Timestamp:
05/06/08 06:31:26 (7 months ago)
Author:
coderanger
Message:

Add README.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • traccasplugin/0.11/setup.py

    r3589 r3619  
    11#!/usr/bin/env python 
    22# -*- coding: iso-8859-1 -*- 
     3import os 
    34 
    45from setuptools import setup 
     
    67setup( 
    78    name = 'TracCAS', 
    8     version = '2.0', 
     9    version = '2.0.1', 
    910    packages = ['traccas'], 
    1011 
     
    1213    author_email = 'noah@coderanger.net', 
    1314    description = 'A modified authentication plugin to use the Yale CAS system.', 
     15    long_description = open(os.path.join(os.path.dirname(__file__), 'README')).read(), 
    1416    license = 'BSD', 
    15     keywords = 'trac plugin cas authentication', 
    16     url = 'http://trac-hacks.org/wiki/TracCASPlugin', 
     17    keywords = 'trac 0.11 plugin cas authentication', 
     18    url = 'http://trac-hacks.org/wiki/TracCasPlugin', 
    1719 
    1820    install_requires = ['Trac'],