From 7595f47c28346ab1470bfd78da4169e250dfcb4e Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Wed, 1 Jul 2015 18:18:10 -0400 Subject: Fix the urls to the docs. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 5ba95f9..89a242d 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ library to determine which lines are executable, and which have been executed. Coverage.py runs on CPython 2.6, 2.7, 3.3, 3.4 or 3.5, PyPy 2.4, and PyPy3 2.4. -Documentation is at `nedbatchelder.com <%s>`_. Code repository and issue +Documentation is on `Read the Docs <{docurl}>`_. Code repository and issue tracker are on `Bitbucket `_, with a mirrored repo on `GitHub `_. @@ -61,7 +61,7 @@ cov_ver_py = os.path.join(os.path.split(__file__)[0], "coverage/version.py") with open(cov_ver_py) as version_file: exec(compile(version_file.read(), cov_ver_py, 'exec')) -doclines = (doc % __url__).splitlines() +doclines = (doc.format(docurl=__url__)).splitlines() classifier_list = classifiers.splitlines() if 'a' in __version__: -- cgit v1.2.1