From 69de29d8d7240ff14d4e83327de212c6a9215c2a Mon Sep 17 00:00:00 2001 From: Daeyeol Ryu Date: Mon, 8 Apr 2024 21:01:12 +0900 Subject: [PATCH] [feat] Resolves #22 Set encoding as UTF-8 when opening README.md file in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4297005..b0a6988 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ VERSION = '1.0.0' -with open("README.md", "r") as fh: +with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() setuptools.setup(