-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathauthors-tag.py
23 lines (21 loc) · 1.02 KB
/
authors-tag.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
chiefs = ["rougier", "khinsen"]
editors = ["otizonaizit", "pdebuyl", "ctb", "ThomasA", "tpoisot",
# "emmanuelle"
"benoit-girard", "karthik", "oliviaguest", "labarba"]
reviewers = ["benoit-girard", "MehdiKhamassi", "vitay", "gdetor", "dmcglinn",
"yoavram", "FedericoV", "heplesser", "apdavison",
"neuronalX", "piero-le-fou", "mstimberg", "rossant", "eroesch",
"damiendr", "delsuc", "soolijoo", "benureau", "rth", "KamilSJaron",
"TiinaManninen",
# "ogrisel",
"almarklein", "pietromarchesi", "anyaevostinar","ozancaglayan",
"aaronshifman"]
replicators = ["gviejo", "gdetor", "MehdiKhamassi", "benoit-girard", "opetchey",
"Vahidrostami", "jsta", "Fjanks", "ChristophMetzner", "vitay",
"akdiem", # "andruhamax",
"falex33", "aaronshifman", "RafaelNH"]
authors = chiefs + editors + reviewers + replicators
for author in authors:
print("@%s, " % author, end="")
print()
print(len(authors))