Skip to content

Commit

Permalink
fix open params
Browse files Browse the repository at this point in the history
  • Loading branch information
codycollier committed Jul 31, 2022
1 parent 1e9b923 commit e6e8a3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

exec(open('venra/version.py').read())

with open("README.md", "r", "utf-8") as f:
with open("README.md", mode="r", encoding="utf-8") as f:
readme_contents = f.read()


Expand All @@ -14,7 +14,7 @@
description = 'venra',
author = 'Cody Collier',
author_email = '[email protected]',
long_description=readme_contents,
long_description=readme_contents,
long_description_content_type = 'text/markdown',
url = 'https://github.com/codycollier/venra',
keywords = [
Expand Down

0 comments on commit e6e8a3b

Please sign in to comment.