We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c74528d + 2afa9ca commit 852ca91Copy full SHA for 852ca91
setup.py
@@ -1,3 +1,4 @@
1
+import io
2
import os
3
from setuptools import setup
4
@@ -7,7 +8,7 @@
7
8
9
# Load index.rst as long_description
10
doc_path = os.path.join(os.path.dirname(__file__), "docs", "index.rst")
-long_description = open(doc_path).read()
11
+long_description = io.open(doc_path, encoding='utf-8').read()
12
13
# Stops exit traceback on tests
14
try:
0 commit comments