forked from pyswmm/pyswmm
-
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.
Merge pull request pyswmm#1 from OpenWaterAnalytics/master
Uptodate
- Loading branch information
Showing
4 changed files
with
43 additions
and
2 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,10 @@ | ||
# Authors ordered by first contribution. | ||
# Generated by tools/update-authors.sh | ||
|
||
Bryant E. McDonnell <[email protected]> | ||
James Westover <[email protected]> | ||
Gonzalo Peña-Castellanos <[email protected]> | ||
|
||
|
||
Authors with Contributions in the Public Domain: | ||
Michael Tryby <[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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,7 @@ def get_description(): | |
author_email='[email protected]', | ||
install_requires=REQUIREMENTS, | ||
packages=find_packages(exclude=['contrib', 'docs', 'tests*']), | ||
package_data={'': ['lib/windows/swmm5.dll', 'LICENSE.txt']}, | ||
package_data={'': ['lib/windows/swmm5.dll', 'LICENSE.txt', 'AUTHORS']}, | ||
include_package_data=True, | ||
license="BSD2 License", | ||
keywords="swmm5, swmm, hydraulics, hydrology, modeling, collection system", | ||
|
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,31 @@ | ||
#!/bin/sh | ||
|
||
## | ||
## This script will auto-generate the AUTHORS attribution file. | ||
## If your name does not display correctly, then please | ||
## update the .mailmap file in the root repo directory | ||
## | ||
|
||
git log --reverse --format='%aN <%aE>' | perl -we ' | ||
BEGIN { | ||
%seen = (), @authors = (); | ||
} | ||
## Start | ||
push @authors, "Bryant E. McDonnell <bemcdonnell\@gmail.com>\n"; | ||
while (<>) { | ||
next if $seen{$_}; | ||
next if /Pena-Castellanos/; | ||
next if /unknown/; | ||
next if /Bryant/; | ||
next if /tryby.michael\@epa.gov/; | ||
$seen{$_} = push @authors, $_; | ||
} | ||
END { | ||
print "# Authors ordered by first contribution.\n"; | ||
print "# Generated by tools/update-authors.sh\n"; | ||
print "\n", @authors; | ||
print "\n\nAuthors with Contributions in the Public Domain:"; | ||
print "\nMichael Tryby <tryby.michael\@epa.gov>"; | ||
} | ||
' > ../AUTHORS |