Changeset 1003
- Timestamp:
- 08/30/07 10:36:31 (15 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
README.txt (modified) (1 diff)
-
setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/README.txt
r1002 r1003 6 6 them and decoding responses. 7 7 8 Here is an example of doing a authentication request: 8 Here is an example of doing a authentication request:: 9 9 10 10 import pyrad.packet -
trunk/setup.py
r1002 r1003 1 1 #!/usr/bin/python 2 2 3 from distutils.core import setup3 from setuptools import setup, find_packages 4 4 5 5 setup( name = "pyrad", 6 6 version = "0.9", 7 7 author = "Wichert Akkerman", 8 author_email = "wichert@ wiggy.net",8 author_email = "wichert@simplon.biz", 9 9 url = "http://www.wiggy.net/code/pyrad/", 10 10 license = "BSD", 11 11 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 ] 16 20 packages = [ "pyrad" ], 17 21 keywords = [ "radius", "authentication" ], 18 package_dir = { "pyrad" : "src" }) 22 package_dir = { "pyrad" : "src" }, 23 zip_safe = True, 24 include_package_data = True, 25 )