ned / coverage.py (http://nedbatchelder.com/code/coverage)

Coverage.py measures Python code coverage, typically during test execution. Kits are at PyPI: http://pypi.python.org/pypi/coverage/.

Clone this repository (size: 2.3 MB): HTTPS / SSH
$ hg clone http://bitbucket.org/ned/coveragepy/
commit 388: 27b6be608b2b
parent 387: fd41cc1ec8b0
branch: default
tags: coverage-3.1b1
Tweaks to the package description.
Ned Batchelder / ned
6 months ago

Changed (Δ112 bytes):

raw changeset »

setup.py (9 lines added, 7 lines removed)

Up to file-list setup.py:

2
2
3
3
"""Code coverage measurement for Python
4
4
5
Coverage measures code coverage, typically during test execution.  It uses the
6
code analysis tools and tracing hooks provided in the Python standard library
7
to determine which lines are executable, and which have been executed.
5
Coverage.py measures code coverage, typically during test execution. It uses the
6
code analysis tools and tracing hooks provided in the Python standard library to
7
determine which lines are executable, and which have been executed.
8
8
9
Code repository and issue tracker are at
10
`bitbucket.org <http://bitbucket.org/ned/coveragepy>`_.
9
Coverage.py runs on Pythons 2.3 through 3.1.
10
11
Documentation is at `nedbatchelder.com <%s>`_.  Code repository and issue
12
tracker are at `bitbucket.org <http://bitbucket.org/ned/coveragepy>`_.
11
13
12
14
"""
13
15
@@ -59,7 +61,7 @@ else:
59
61
60
62
from coverage import __url__, __version__
61
63
62
doclines = __doc__.split('\n')
64
doclines = (__doc__ % __url__).split('\n')
63
65
64
66
classifier_list = [c for c in classifiers.split("\n") if c]
65
67
@@ -101,4 +103,4 @@ setup(
101
103
    url = __url__,
102
104
    
103
105
    **more_setup_args
104
)
106
    )