diff --git a/setup.py b/setup.py index 8c66fc4..8472b68 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,9 @@ +import io from setuptools import setup, find_packages from os import path this_directory = path.abspath(path.dirname(__file__)) -with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: +with io.open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup(