docs: Include full list of authors

This commit is contained in:
Stein Magnus Jodal 2012-12-13 02:21:21 +01:00
parent eb717693f9
commit 1919d7f8c2
4 changed files with 22 additions and 7 deletions

View File

@ -1,3 +1,5 @@
Thomas Adamcik <thomas@adamcik.no> <adamcik@samfundet.no>
Thomas Adamcik <thomas@adamcik.no> <thomas+github@adamcik.no>
Kristian Klette <klette@samfundet.no>
Johannes Knutsen <johannes@knutseninfo.no> <johannes@iterate.no>
Johannes Knutsen <johannes@knutseninfo.no> <johannes@barbarmaclin.(none)>

13
AUTHORS Normal file
View File

@ -0,0 +1,13 @@
- Stein Magnus Jodal <stein.magnus@jodal.no>
- Johannes Knutsen <johannes@knutseninfo.no>
- Thomas Adamcik <thomas@adamcik.no>
- Kristian Klette <klette@samfundet.no>
- Martins Grunskis <martins@grunskis.com>
- Henrik Olsson <henrik@fixme.se>
- Antoine Pierlot-Garcin <antoine@bokbox.com>
- John Bäckstrand <sopues@gmail.com>
- Fred Hatfull <fred.hatfull@gmail.com>
- Erling Børresen <erling@fenicore.net>
- David C <dav@dav.com>
- Christian Johansen <christian@cjohansen.no>
- Matt Bray <mattjbray@gmail.com>

View File

@ -4,13 +4,7 @@ Authors
Contributors to Mopidy in the order of appearance:
- Stein Magnus Jodal <stein.magnus@jodal.no>
- Johannes Knutsen <johannes@knutsen.me>
- Thomas Adamcik <adamcik@samfundet.no>
- Kristian Klette <klette@klette.us>
A complete list of persons with commits accepted into the Mopidy repo can be
found at `GitHub <https://github.com/mopidy/mopidy/graphs/contributors>`_.
.. include:: ../AUTHORS
Showing your appreciation

6
fabfile.py vendored
View File

@ -12,3 +12,9 @@ def autotest():
local(
'inotifywait -q -e create -e modify -e delete '
'--exclude ".*\.(pyc|sw.)" -r mopidy/ tests/')
def update_authors():
# Keep authors in the order of appearance and use awk to filter out dupes
local(
"git log --format='- %aN <%aE>' --reverse | awk '!x[$0]++' > AUTHORS")