license : update copyright notice + add AUTHORS

This commit is contained in:
Georgi Gerganov
2024-04-09 20:27:44 +03:00
parent 526332873b
commit c7dc37f97c
3 changed files with 311 additions and 1 deletions

9
scripts/gen-authors.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
printf "# date: $(date)\n" > AUTHORS
printf "# this file is auto-generated by scripts/gen-authors.sh\n\n" >> AUTHORS
git log --format='%an <%ae>' --reverse --date=short master | awk '!seen[$0]++' | sort >> AUTHORS
# if necessary, update your name here. for example: jdoe -> John Doe
sed -i '' 's/^jdoe/John Doe/g' AUTHORS