Skip to content

Commit

Permalink
adding missing author email and ignore _site folder
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Jun 26, 2021
1 parent 6f477e5 commit 0c95303
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ global-exclude *.py[co]
recursive-exclude .git *
global-exclude __pycache__
prune env
prune contributor_ci/site/_site
prune docs*
1 change: 1 addition & 0 deletions contributor_ci/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
__version__ = "0.0.11"
AUTHOR = "Vanessa Sochat"
NAME = "contributor_ci"
AUTHOR_EMAIL = "vsoch@users.noreply.github.com"
PACKAGE_URL = "https://github.com/vsoch/contributor_ci"
KEYWORDS = "contributions, contributors, GitHub action, automated"
DESCRIPTION = "automated tools to assess contributions."
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ def get_reqs(lookup=None, key="INSTALL_REQUIRES"):
VERSION = lookup["__version__"]
NAME = lookup["NAME"]
AUTHOR = lookup["AUTHOR"]
EMAIL = lookup["AUTHOR_EMAIL"]
PACKAGE_URL = lookup["PACKAGE_URL"]
KEYWORDS = lookup["KEYWORDS"]
DESCRIPTION = lookup["DESCRIPTION"]
Expand All @@ -62,6 +63,7 @@ def get_reqs(lookup=None, key="INSTALL_REQUIRES"):
version=VERSION,
author=AUTHOR,
maintainer=AUTHOR,
author_email=EMAIL,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
Expand Down

0 comments on commit 0c95303

Please sign in to comment.