From 9856d9769132c5b470f93c5ce569eb5cefaf4082 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= Date: Mon, 5 Dec 2022 23:09:52 +0000 Subject: [PATCH] fix: possible issue with UTF-8 and README.md --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fc105af..42e95e3 100644 --- a/setup.py +++ b/setup.py @@ -76,6 +76,6 @@ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], - long_description = open(os.path.join(os.path.dirname(__file__), "README.md"), "r").read(), + long_description = open(os.path.join(os.path.dirname(__file__), "README.md"), "rb").read().decode("utf-8"), long_description_content_type = "text/markdown" )