summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-12-06 15:55:56 -0500
committerNed Batchelder <ned@nedbatchelder.com>2009-12-06 15:55:56 -0500
commitcc03821e9b8e995accb223d7650a83f9204b6827 (patch)
tree62d35d3272d958958ba8a736ef0397f3f8fba81e
parente2ae0674a21dda5d964658477e14d0c7832123a3 (diff)
downloadpython-coveragepy-cc03821e9b8e995accb223d7650a83f9204b6827.tar.gz
Added an AUTHORS.txt file.
-rw-r--r--AUTHORS.txt27
-rw-r--r--CHANGES.txt2
-rw-r--r--MANIFEST.in1
-rw-r--r--doc/index.rst4
-rw-r--r--setup.py2
5 files changed, 34 insertions, 2 deletions
diff --git a/AUTHORS.txt b/AUTHORS.txt
new file mode 100644
index 0000000..0278f50
--- /dev/null
+++ b/AUTHORS.txt
@@ -0,0 +1,27 @@
+Coverage.py was originally written by Gareth Rees, and since 2004 has been
+extended and maintained by Ned Batchelder.
+
+Other contributions have been made by:
+
+Chris Adams
+Danek Duvall
+Ross Lawley
+Ben Finney
+Bill Hart
+Christian Heimes
+Detlev Offenbach
+George Song
+David Christian
+Imri Goldberg
+Patrick Mezard
+Edward Loper
+Guillaume Chazarain
+Titus Brown
+Noel O'Boyle
+Catherine Proulx
+Joseph Tate
+Sigve Tjora
+Mark van der Wal
+Geoff Bache
+Martin Fuzzey
+Greg Rogers
diff --git a/CHANGES.txt b/CHANGES.txt
index f191b29..adff817 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -8,6 +8,8 @@ Version 3.3
- Settings are now read from a .coveragerc file.
+- Added an AUTHORS.txt file.
+
Version 3.2, 5 December 2009
----------------------------
diff --git a/MANIFEST.in b/MANIFEST.in
index 907d9d0..65a60a0 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -7,4 +7,5 @@ include ez_setup.py
include setup.py
include README.txt
include CHANGES.txt
+include AUTHORS.txt
prune test
diff --git a/doc/index.rst b/doc/index.rst
index 9666f3f..053eb7b 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -89,10 +89,12 @@ History
-------
Coverage.py was originally written by `Gareth Rees`_.
-Since 2004, `Ned Batchelder`_ has maintained and extended it.
+Since 2004, `Ned Batchelder`_ has extended and maintained it with the help of
+`many others`_.
.. _Gareth Rees: http://garethrees.org/
.. _Ned Batchelder: http://nedbatchelder.com
+.. _many others: http://bitbucket.org/ned/coveragepy/src/tip/AUTHORS.txt
More information
diff --git a/setup.py b/setup.py
index 6bd472a..2d4efae 100644
--- a/setup.py
+++ b/setup.py
@@ -88,7 +88,7 @@ setup(
# We need to get HTML assets from our htmlfiles dir.
zip_safe = False,
- author = 'Ned Batchelder',
+ author = 'Ned Batchelder and others',
author_email = 'ned@nedbatchelder.com',
description = doclines[0],
long_description = '\n'.join(doclines[2:]),