diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-09-27 11:08:45 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-09-27 11:08:45 -0400 |
commit | 35ab6264c0b389a04ee804f2cc1a8156d7f30c14 (patch) | |
tree | 319540f95b7af19f8035790138b72f8a35580044 | |
parent | aecb03a792e48b2c1768d21f5529936f1c0e32ea (diff) | |
download | python-coveragepy-git-35ab6264c0b389a04ee804f2cc1a8156d7f30c14.tar.gz |
Tweaks to the package description.coverage-3.1b1
-rw-r--r-- | setup.py | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -2,12 +2,14 @@ """Code coverage measurement for Python -Coverage measures code coverage, typically during test execution. It uses the -code analysis tools and tracing hooks provided in the Python standard library -to determine which lines are executable, and which have been executed. +Coverage.py measures code coverage, typically during test execution. It uses the +code analysis tools and tracing hooks provided in the Python standard library to +determine which lines are executable, and which have been executed. -Code repository and issue tracker are at -`bitbucket.org <http://bitbucket.org/ned/coveragepy>`_. +Coverage.py runs on Pythons 2.3 through 3.1. + +Documentation is at `nedbatchelder.com <%s>`_. Code repository and issue +tracker are at `bitbucket.org <http://bitbucket.org/ned/coveragepy>`_. """ @@ -59,7 +61,7 @@ else: from coverage import __url__, __version__ -doclines = __doc__.split('\n') +doclines = (__doc__ % __url__).split('\n') classifier_list = [c for c in classifiers.split("\n") if c] @@ -101,4 +103,4 @@ setup( url = __url__, **more_setup_args -) + ) |