We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5571663 commit 058b484Copy full SHA for 058b484
setup.py
@@ -1,11 +1,12 @@
1
import os
2
+import io
3
import json
4
from setuptools import setup
5
-with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding="utf-8") as f:
6
+with io.open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding="utf-8") as f:
7
readme = f.read()
8
-with open(os.path.join(os.path.dirname(__file__), 'package.json'), encoding="utf-8") as f:
9
+with io.open(os.path.join(os.path.dirname(__file__), 'package.json'), encoding="utf-8") as f:
10
package = json.loads(f.read())
11
12
setup(
0 commit comments