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 ac8311f commit ba6c034Copy full SHA for ba6c034
setup.py
@@ -14,11 +14,12 @@
14
15
16
import os
17
+import codecs
18
from setuptools import setup, find_packages
19
20
21
def read(*rnames):
- return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
22
+ return codecs.open(os.path.join(os.path.dirname(__file__), *rnames), encoding='utf-8').read()
23
24
25
setup(
0 commit comments