summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 00000000..0278f504
--- /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 f191b294..adff817b 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 907d9d0d..65a60a06 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 9666f3fb..053eb7b3 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 6bd472ac..2d4efaed 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:]),