Skip to content

Commit

Permalink
Add author email
Browse files Browse the repository at this point in the history
  • Loading branch information
parafoxia committed Jul 27, 2021
1 parent 793880f commit 787271c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions analytix/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
__url__ = "https://github.com/parafoxia/analytix"
__docs__ = "https://analytix.readthedocs.io/en/latest/"
__author__ = "Ethan Henderson"
__email__ = "[email protected]"
__license__ = "BSD-3-Clause"
__bugtracker__ = "https://github.com/parafoxia/analytix/issues"

Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ def parse_requirements(path):
url,
docs,
author,
email,
license_,
bug_tracker,
) = [l.split('"')[1] for l in f.readlines()[:8]]
) = [l.split('"')[1] for l in f.readlines()[:9]]

with open("./README.md", mode="r", encoding="utf-8") as f:
long_description = f.read()
Expand All @@ -39,6 +40,7 @@ def parse_requirements(path):
long_description_content_type="text/markdown",
url=url,
author=author,
author_email=email,
license=license_,
classifiers=[
# "Development Status :: 1 - Planning",
Expand Down

0 comments on commit 787271c

Please sign in to comment.