From a08f21d66cce6a3d3f29e635bf4da828e7b397e2 Mon Sep 17 00:00:00 2001 From: shiv Date: Sun, 30 Jun 2024 20:27:33 +0530 Subject: [PATCH] Fix UnicodeDecodeError by reading README.md with UTF-8 encoding --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cfbeaddf..54c11995 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup( name="Crawl4AI", version="0.2.72", description="🔥🕷️ Crawl4AI: Open-source LLM Friendly Web Crawler & Scrapper", - long_description=open("README.md").read(), + long_description=open("README.md", encoding="utf-8").read(), long_description_content_type="text/markdown", url="https://github.com/unclecode/crawl4ai", author="Unclecode",