Changeset 1003

Show
Ignore:
Timestamp:
08/30/07 10:36:31 (15 months ago)
Author:
wichert
Message:

Eggify

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/README.txt

    r1002 r1003  
    66them and decoding responses.  
    77 
    8 Here is an example of doing a authentication request: 
     8Here is an example of doing a authentication request:: 
    99 
    1010  import pyrad.packet 
  • trunk/setup.py

    r1002 r1003  
    11#!/usr/bin/python 
    22 
    3 from distutils.core import setup 
     3from setuptools import setup, find_packages 
    44 
    55setup(  name            = "pyrad", 
    66        version         = "0.9", 
    77        author          = "Wichert Akkerman", 
    8         author_email    = "wichert@wiggy.net", 
     8        author_email    = "wichert@simplon.biz", 
    99        url             = "http://www.wiggy.net/code/pyrad/", 
    1010        license         = "BSD", 
    1111        description     = "RADIUS client tools", 
    12         long_description=  
    13 '''pyrad is an implementation of a RADIUS client as described in RFC2865. 
    14 It takes care of all the details like building RADIUS packets, sending 
    15 them and decoding responses.''', 
     12        long_description= open("README.txt").read(), 
     13        classifiers     = [ 
     14            "Intended Audience :: Developers", 
     15            "License :: OSI Approved :: BSD License", 
     16            "Programming Language :: Python", 
     17            "Topic :: Software Development :: Libraries :: Python Modules", 
     18            "Topic :: System :: Systems Administration :: Authentication/Directory", 
     19            ] 
    1620        packages        = [ "pyrad" ], 
    1721        keywords        = [ "radius", "authentication" ], 
    18         package_dir     = { "pyrad" : "src" }) 
     22        package_dir     = { "pyrad" : "src" }, 
     23        zip_safe        = True, 
     24        include_package_data = True, 
     25        )