From e4dd284121e0979095ccba7ee90d603c42fa44f5 Mon Sep 17 00:00:00 2001 From: INT-FLIE Date: Wed, 8 Mar 2023 22:48:42 +0900 Subject: [PATCH] Explicit specification of character encoding --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3fc02c6..07b701d 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ def readme(): - with open('README.md') as f: + with open('README.md', encoding='utf-8') as f: return f.read()