rss2email: Sort __contributors__ by first name and add missing folks
authorW. Trevor King <wking@tremily.us>
Fri, 18 Jan 2013 03:07:45 +0000 (22:07 -0500)
committerW. Trevor King <wking@tremily.us>
Fri, 18 Jan 2013 03:09:43 +0000 (22:09 -0500)
This brings __contributors__ in line with the auto-generated AUTHORS.
I'm not convinced that listing __contributors__ in a Python-parsable
manner is worth the trouble, but I'll leave it in for now.

Signed-off-by: W. Trevor King <wking@tremily.us>
rss2email/__init__.py

index 1eec581b5fe7a6746e31d18e75df2a8fd0a500b0..071cc317d58035d7c5ee53486fd3fb967ec3df5e 100644 (file)
@@ -26,16 +26,18 @@ __url__ = 'http://rss2email.infogami.com'
 __author__ = 'W. Trevor King'
 __copyright__ = '(C) 2004 Aaron Swartz. GNU GPL 2 or 3.'
 __contributors__ = [
-    'Dean Jackson',
+    'Aaron Swartz (original author)',
     'Brian Lalor',
+    'Dean Jackson',
+    'Eelis van der Weegen',
+    'Erik Hetzner',
+    'Etienne Millon',
     'Joey Hess',
-    'Matej Cepl',
-    "Martin 'Joey' Schulze",
-    'Marcel Ackermann (http://www.DreamFlasher.de)',
     'Lindsey Smith (lindsey@allthingsrss.com)',
-    'Erik Hetzner',
+    'Marcel Ackermann (http://www.DreamFlasher.de)',
+    "Martin 'Joey' Schulze",
+    'Matej Cepl',
     'W. Trevor King',
-    'Aaron Swartz (original author)',
     ]
 
 LOG = _logging.getLogger('rss2email')