Changeset 1008
- Timestamp:
- 09/01/07 12:49:34 (15 months ago)
- Location:
- trunk
- Files:
-
- 1 modified
- 9 copied
- 1 moved
-
pyrad (moved) (moved from trunk/src)
-
pyrad/__init__.py (copied) (copied from trunk/src/__init__.py)
-
pyrad/bidict.py (copied) (copied from trunk/src/bidict.py)
-
pyrad/client.py (copied) (copied from trunk/src/client.py)
-
pyrad/curved.py (copied) (copied from trunk/src/curved.py)
-
pyrad/dictionary.py (copied) (copied from trunk/src/dictionary.py)
-
pyrad/host.py (copied) (copied from trunk/src/host.py)
-
pyrad/packet.py (copied) (copied from trunk/src/packet.py)
-
pyrad/server.py (copied) (copied from trunk/src/server.py)
-
pyrad/tools.py (copied) (copied from trunk/src/tools.py)
-
setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/setup.py
r1005 r1008 20 20 "Topic :: System :: Systems Administration :: Authentication/Directory", 21 21 ], 22 packages = [ "pyrad" ],22 packages = find_packages(exclude=['tests']), 23 23 keywords = [ "radius", "authentication" ], 24 package_dir = { "pyrad" : "src" },25 24 zip_safe = True, 26 25 include_package_data = True, 26 tests_require = "nose", 27 test_suite = "nose.collector", 27 28 )