Skip to content

Commit

Permalink
Setting utf8 for long description
Browse files Browse the repository at this point in the history
  • Loading branch information
xflash96 committed May 25, 2019
1 parent d4ef3f2 commit 0819ab3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
)
ext_modules.append(extension)

with open("README.md", "r") as fh:
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()

# Python interface
Expand All @@ -57,8 +57,8 @@
url='https://github.com/locuslab/SATNet',
zip_safe=False,
description='Bridging deep learning and logical reasoning using a differentiable satisfiability solver',
long_description=long_description,
long_description_content_type="text/markdown",
#long_description=long_description,
#long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: MIT License",
],
Expand Down

0 comments on commit 0819ab3

Please sign in to comment.