Imported Upstream version 1.2.1
[platform/upstream/python-nose.git] / nose / __init__.py
1 from nose.core import collector, main, run, run_exit, runmodule
2 # backwards compatibility
3 from nose.exc import SkipTest, DeprecatedTest
4 from nose.tools import with_setup
5
6 __author__ = 'Jason Pellerin'
7 __versioninfo__ = (1, 2, 1)
8 __version__ = '.'.join(map(str, __versioninfo__))
9
10 __all__ = [
11     'main', 'run', 'run_exit', 'runmodule', 'with_setup',
12     'SkipTest', 'DeprecatedTest', 'collector'
13     ]
14
15