diff --git a/setup.py b/setup.py index 8e8227e..a5a6f3d 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def isdef(var): def read(path, encoding = None): content = None - with open(path, encoding = encoding) as f: + with io.open(path, encoding = encoding) as f: content = f.read() return content