diff --git a/docs/AUTHORS b/docs/AUTHORS new file mode 100644 index 000000000..7e1a6f494 --- /dev/null +++ b/docs/AUTHORS @@ -0,0 +1,26 @@ +# This file lists all individuals having contributed content to the repository. +# For how it is generated, see `docs/generate-authors.sh`. + +Aaron Hill +Brendan Mc +Brian Tiger Chow +Carlos Cobo +Chas Leichner +Christian Couder +Emery Hemingway +epitron +Ethan Buchman +Henry +Jeromy Johnson +Juan Batiz-Benet +llSourcell +Markus Amalthea Magnuson +Matt Bell +Mildred Ki'Lya +Patrick Connolly +Peter Borzov +Quinn Slack +Shanti Bouchez-Mongardé +Simon Kirkby +Siraj Ravel +verokarhu diff --git a/docs/generate-authors.sh b/docs/generate-authors.sh new file mode 100755 index 000000000..75b33b7e0 --- /dev/null +++ b/docs/generate-authors.sh @@ -0,0 +1,12 @@ +#!/bin/bash +set -e + +# see also ".mailmap" for how email addresses and names are deduplicated + + +cat >AUTHORS <<-'EOF' +# This file lists all individuals having contributed content to the repository. +# For how it is generated, see `docs/generate-authors.sh`. + +EOF +git log --format='%aN <%aE>' | LC_ALL=C.UTF-8 sort -uf >>AUTHORS