diff --git a/setup.py b/setup.py index 31a51aa..617b6fc 100644 --- a/setup.py +++ b/setup.py @@ -2,8 +2,8 @@ from setuptools import setup, find_packages -with open('README.rst') as infile: - readme = infile.read() +with open('README.rst', 'rb') as infile: + readme = infile.read().decode('UTF-8') with open('lazy_import/VERSION') as infile: version = infile.read().strip()