Changeset 120

Show
Ignore:
Timestamp:
10/29/08 04:33:37 (3 years ago)
Author:
lgs
Message:

Add a test_suite option to setup.py so we can run the testsuite with the command 'python setup.py test'

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/setup.py

    r118 r120  
    4343#    ], 
    4444    zip_safe=True, 
    45     entry_points = { 
     45    entry_points={ 
    4646        'gui_scripts': [ 
    4747            'chavier = chavier.app:main', 
    4848        ] 
    49     } 
     49    }, 
     50    test_suite="tests", 
    5051)