File: setup.py

package info (click to toggle)
pyrad 0.8-1.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 136 kB
  • ctags: 159
  • sloc: python: 754; makefile: 3
file content (18 lines) | stat: -rwxr-xr-x 568 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/python

from distutils.core import setup

setup(	name		= "pyrad",
	version		= "0.8",
	author		= "Wichert Akkerman",
	author_email	= "wichert@wiggy.net",
	url		= "http://www.wiggy.net/code/pyrad/",
	license		= "BSD",
	description	= "RADIUS client tools",
	long_description= 
'''pyrad is an implementation of a RADIUS client as described in RFC2865.
It takes care of all the details like building RADIUS packets, sending
them and decoding responses.''',
	packages	= [ "pyrad" ],
	keywords	= [ "radius", "authentication" ],
	package_dir	= { "pyrad" : "src" })