From a9ae9008da8329c6bbadd71243d26763ae0e1e99 Mon Sep 17 00:00:00 2001 From: ZoranPandovski Date: Thu, 29 Jan 2026 09:59:23 +1100 Subject: [PATCH] Encode readme --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 8c0e84e..431106d 100644 --- a/setup.py +++ b/setup.py @@ -4,10 +4,10 @@ with open("minds/__about__.py") as fp: exec(fp.read(), about) -with open("README.md", "r") as fh: +with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() -with open('requirements.txt') as req_file: +with open("requirements.txt") as req_file: requirements = req_file.read().splitlines() setup(