Skip to content

Commit

Permalink
Fix setup non-ascii README
Browse files Browse the repository at this point in the history
Needs unicode encoding.
  • Loading branch information
bouthilx authored Sep 1, 2018
1 parent 1016fac commit b058da8
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 @@ -49,7 +49,7 @@ def find_data_files():
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description=kleio.__descr__,
long_description=open(os.path.join(repo_root, "README.rst")).read(),
long_description=open(os.path.join(repo_root, "README.rst"), 'rt', encoding='utf8').read(),
license=kleio.__license__,
author=kleio.__author__,
author_email=kleio.__author_email__,
Expand Down

0 comments on commit b058da8

Please sign in to comment.