Skip to content

Commit

Permalink
Fix bug in parsing README for long description. (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
willgraf authored Jun 22, 2020
1 parent 3e0bc32 commit dd1877a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
from setuptools import find_packages

# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md')) as f:
long_description = f.read()


Expand Down

0 comments on commit dd1877a

Please sign in to comment.