From 025ee4c1e8fe52e132244e5e955bd39b6912ef68 Mon Sep 17 00:00:00 2001 From: Marc Wouts Date: Tue, 11 Sep 2018 12:10:24 +0200 Subject: [PATCH] Read README as unicode for #71 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7a43e88e8..65611075c 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages this_directory = path.abspath(path.dirname(__file__)) -with open(path.join(this_directory, 'README.md')) as f: +with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup(