-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
85 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Adam Wentz <[email protected]> | ||
Alex Grönholm <[email protected]> <[email protected]> | ||
Anatoly Techtonik <[email protected]> | ||
Andrey Bulgakov <[email protected]> | ||
Andrei Geacar <[email protected]> unknown <hakaton@Anam-mbl.(none)> | ||
Ben Rosser <[email protected]> | ||
<[email protected]> <[email protected]> | ||
Daniel Holth <[email protected]> | ||
<[email protected]> <[email protected]> | ||
Endoh Takanao <[email protected]> | ||
Erik M. Bray <[email protected]> | ||
Gabriel de Perthuis <[email protected]> | ||
Geoffrey Lehée <[email protected]> | ||
Hsiaoming Yang <[email protected]> | ||
Ilya Baryshev <[email protected]> | ||
Jakub Stasiak <[email protected]> | ||
John-Scott Atlakson <[email protected]> | ||
Jorge Niedbalski <[email protected]> | ||
Markus Hametner <[email protected]> | ||
Masklinn <[email protected]> | ||
Preston Holmes <[email protected]> | ||
Przemek Wrzos <hetmankp@none> | ||
Thomas Johansson <devnull@localhost> prencher <devnull@localhost> | ||
Yoval P <[email protected]> | ||
Zhiping Deng <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,7 +66,7 @@ def find_version(*file_paths): | |
author_email='[email protected]', | ||
url='http://www.pip-installer.org', | ||
license='MIT', | ||
packages=find_packages(exclude=["contrib", "docs", "tests*"]), | ||
packages=find_packages(exclude=["contrib", "docs", "tests*", "tasks"]), | ||
package_data={ | ||
'pip._vendor.requests': ['*.pem'], | ||
'pip._vendor.distlib._backport': ['sysconfig.cfg'], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import invoke | ||
|
||
from . import generate | ||
|
||
ns = invoke.Collection(generate) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import io | ||
|
||
import invoke | ||
|
||
|
||
@invoke.task | ||
def authors(): | ||
print("[generate.authors] Generating AUTHORS") | ||
|
||
# Get our list of authors | ||
print("[generate.authors] Collecting author names") | ||
# <%aE> | ||
r = invoke.run("git log --use-mailmap --format'=%aN'", hide=True) | ||
authors = [] | ||
seen_authors = set() | ||
for author in r.stdout.splitlines(): | ||
author = author.strip() | ||
if author.lower() not in seen_authors: | ||
seen_authors.add(author.lower()) | ||
authors.append(author) | ||
|
||
# Sort our list of Authors by their case insensitive name | ||
authors = sorted(authors, key=lambda x: x.lower()) | ||
|
||
# Write our authors to the AUTHORS file | ||
print("[generate.authors] Writing AUTHORS") | ||
with io.open("AUTHORS.txt", "w", encoding="utf8") as fp: | ||
fp.write(u"\n".join(authors)) | ||
fp.write(u"\n") |