Skip to content

Commit

Permalink
fixes to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
buanzo committed Jun 29, 2020
1 parent f222b95 commit 027a635
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def get_version():
# Imports content of README.md into setuptools' long_description
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.txt'), encoding='utf-8') as f:
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()


Expand Down

0 comments on commit 027a635

Please sign in to comment.