diff --git a/setup.py b/setup.py index 8c8f0b6..7f1c99c 100755 --- a/setup.py +++ b/setup.py @@ -73,7 +73,7 @@ def project_content(filename): if not os.path.isfile(filepath): raise IOError("""File %s doesn't exist""" % filepath) out = '' - with io.open(filepath, 'r') as handle: + with io.open(filepath, 'r', encoding='utf-8') as handle: out += handle.read() if not out: raise ValueError("""File %s couldn't be read""" % filename)