From 216a7f741c8f65a3dfc98ac3c9b3629c2ae4dfeb Mon Sep 17 00:00:00 2001 From: squidfunk Date: Thu, 28 Mar 2019 20:50:59 +0100 Subject: [PATCH] Fixed setup.py encoding for README --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a262b022d..dc22ada53 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ with open("requirements.txt") as data: ] # Load README contents -with open("README.md") as data: +with open("README.md", encoding = "utf-8") as data: long_description = data.read() # Package description