Imported Upstream version 1.1.2
[platform/upstream/python-nose.git] / PKG-INFO
1 Metadata-Version: 1.0
2 Name: nose
3 Version: 1.1.2
4 Summary: nose extends unittest to make testing easier
5 Home-page: http://readthedocs.org/docs/nose/
6 Author: Jason Pellerin
7 Author-email: jpellerin+nose@gmail.com
8 License: GNU LGPL
9 Description: nose extends the test loading and running features of unittest, making
10             it easier to write, find and run tests.
11         
12             By default, nose will run tests in files or directories under the current
13             working directory whose names include "test" or "Test" at a word boundary
14             (like "test_this" or "functional_test" or "TestClass" but not
15             "libtest"). Test output is similar to that of unittest, but also includes
16             captured stdout output from failing tests, for easy print-style debugging.
17         
18             These features, and many more, are customizable through the use of
19             plugins. Plugins included with nose provide support for doctest, code
20             coverage and profiling, flexible attribute-based test selection,
21             output capture and more. More information about writing plugins may be
22             found on in the nose API documentation, here:
23             http://somethingaboutorange.com/mrl/projects/nose/
24         
25             If you have recently reported a bug marked as fixed, or have a craving for
26             the very latest, you may want the unstable development version instead:
27             http://bitbucket.org/jpellerin/nose/get/tip.gz#egg=nose-dev
28             
29 Keywords: test unittest doctest automatic discovery
30 Platform: UNKNOWN
31 Classifier: Development Status :: 4 - Beta
32 Classifier: Intended Audience :: Developers
33 Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
34 Classifier: Natural Language :: English
35 Classifier: Operating System :: OS Independent
36 Classifier: Programming Language :: Python
37 Classifier: Programming Language :: Python :: 3
38 Classifier: Topic :: Software Development :: Testing