From 230834857244604971bc6c5437ca970976713aea Mon Sep 17 00:00:00 2001 From: Rysias <39084161+Rysias@users.noreply.github.com> Date: Tue, 18 Dec 2018 09:32:04 +0100 Subject: [PATCH 1/3] Update and rename setup.py to setup_with_encoding.py --- setup.py => setup_with_encoding.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename setup.py => setup_with_encoding.py (94%) diff --git a/setup.py b/setup_with_encoding.py similarity index 94% rename from setup.py rename to setup_with_encoding.py index c5acafb..2033aa5 100644 --- a/setup.py +++ b/setup_with_encoding.py @@ -2,7 +2,7 @@ def readme(): - with open('README.md') as f: + with open('README.md', encoding = "utf-8") as f: return f.read() with open('requirements.txt') as f: From ea54fba4c385baff0d34f0eb2ac54ab45396f9e3 Mon Sep 17 00:00:00 2001 From: Rysias <39084161+Rysias@users.noreply.github.com> Date: Tue, 18 Dec 2018 09:32:26 +0100 Subject: [PATCH 2/3] Rename setup_with_encoding.py to setup.py --- setup_with_encoding.py => setup.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename setup_with_encoding.py => setup.py (100%) diff --git a/setup_with_encoding.py b/setup.py similarity index 100% rename from setup_with_encoding.py rename to setup.py From 479303e4d5657efeb65b1d9c691cfe718eae0fd2 Mon Sep 17 00:00:00 2001 From: Rysias <39084161+Rysias@users.noreply.github.com> Date: Tue, 18 Dec 2018 09:34:43 +0100 Subject: [PATCH 3/3] Update setup.py Fixed UnicodeError in setup --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2033aa5..f9d1cbf 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ def readme(): - with open('README.md', encoding = "utf-8") as f: + with open('README.md', encoding = "utf-8") as f: return f.read() with open('requirements.txt') as f: