blob: df1730d88fb9e14b6144a6b250061e73c241023e [file] [log] [blame]
iannucci@chromium.org3665cd22013-11-07 09:37:03 +00001Metadata-Version: 1.1
2Name: coverage
3Version: 3.7
4Summary: Code coverage measurement for Python
5Home-page: http://nedbatchelder.com/code/coverage
6Author: Ned Batchelder and others
7Author-email: ned@nedbatchelder.com
8License: BSD
9Description: Coverage.py measures code coverage, typically during test execution. It uses
10 the code analysis tools and tracing hooks provided in the Python standard
11 library to determine which lines are executable, and which have been executed.
12
13 Coverage.py runs on Pythons 2.3 through 3.3, and PyPy 1.9.
14
15 Documentation is at `nedbatchelder.com <http://nedbatchelder.com/code/coverage>`_. Code repository and issue
16 tracker are on `Bitbucket <http://bitbucket.org/ned/coveragepy>`_, with a
17 mirrored repo on `Github <https://github.com/nedbat/coveragepy>`_.
18
19 New in 3.7: ``--debug``, and 12 bugs closed.
20
21 New in 3.6: ``--fail-under``, and >20 bugs closed.
22
23 New in 3.5: Branch coverage exclusions, keyboard shortcuts in HTML report.
24
25 New in 3.4: Better control over source to measure, and unexecuted files
26 can be reported.
27
28 New in 3.3: .coveragerc files.
29
30 New in 3.2: Branch coverage!
31Keywords: code coverage testing
32Platform: UNKNOWN
33Classifier: Environment :: Console
34Classifier: Intended Audience :: Developers
35Classifier: License :: OSI Approved :: BSD License
36Classifier: Operating System :: OS Independent
37Classifier: Programming Language :: Python :: 2
38Classifier: Programming Language :: Python :: 3
39Classifier: Topic :: Software Development :: Quality Assurance
40Classifier: Topic :: Software Development :: Testing
41Classifier: Development Status :: 5 - Production/Stable