Changeset 1008

Show
Ignore:
Timestamp:
09/01/07 12:49:34 (15 months ago)
Author:
wichert
Message:

Restructure things a bit so we can easily use the test runner

Location:
trunk
Files:
1 modified
9 copied
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/setup.py

    r1005 r1008  
    2020            "Topic :: System :: Systems Administration :: Authentication/Directory", 
    2121            ], 
    22         packages        = [ "pyrad" ], 
     22        packages         = find_packages(exclude=['tests']), 
    2323        keywords        = [ "radius", "authentication" ], 
    24         package_dir     = { "pyrad" : "src" }, 
    2524        zip_safe        = True, 
    2625        include_package_data = True, 
     26        tests_require   = "nose", 
     27        test_suite      = "nose.collector", 
    2728        )