Skip to content

Commit

Permalink
Specify utf8 encoding when opening README.rst
Browse files Browse the repository at this point in the history
This fixes #81.
  • Loading branch information
eunovm committed Mar 19, 2019
1 parent 9160833 commit c869b64
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 @@ -196,7 +196,7 @@ def finalize_options(self):
author_email="ilya.shchepetkov@yandex.ru",
url="https://github.com/17451k/clade",
license="LICENSE.txt",
long_description=open("README.rst").read(),
long_description=open("README.rst", encoding="utf8").read(),
python_requires=">=3.4",
packages=["clade"],
package_data={"clade": package_files("clade")},
Expand Down

0 comments on commit c869b64

Please sign in to comment.