From 4bf23944c4bd657e79c92c825b1848cef8ff5eac Mon Sep 17 00:00:00 2001 From: Tom Russell Date: Mon, 19 Aug 2019 15:19:24 +0100 Subject: [PATCH] Read README as utf8 (for Windows install) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0607144..8dec923 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ def readme(): """Read README contents """ - with open('README.md') as f: + with open('README.md', encoding='utf8') as f: return f.read()