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.
1 parent 7221f8b commit e90ad85Copy full SHA for e90ad85
setup.py
@@ -7,6 +7,7 @@
7
from distutils.core import setup, Command
8
import timeit
9
import os
10
+import io
11
12
import versioneer
13
versioneer.versionfile_source = "ecdsa/_version.py"
@@ -76,7 +77,7 @@ def do(setup_statements, statement):
76
77
commands["speed"] = Speed
78
79
here = os.path.abspath(os.path.dirname(__file__))
-with open(os.path.join(here, "README.md"), encoding='utf-8') as f:
80
+with io.open(os.path.join(here, "README.md"), encoding='utf-8') as f:
81
long_desc = f.read()
82
83
setup(name="ecdsa",
0 commit comments