Fix UnicodeDecodeError by reading README.md with UTF-8 encoding
This commit is contained in:
2
setup.py
2
setup.py
@@ -28,7 +28,7 @@ setup(
|
|||||||
name="Crawl4AI",
|
name="Crawl4AI",
|
||||||
version="0.2.72",
|
version="0.2.72",
|
||||||
description="🔥🕷️ Crawl4AI: Open-source LLM Friendly Web Crawler & Scrapper",
|
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",
|
long_description_content_type="text/markdown",
|
||||||
url="https://github.com/unclecode/crawl4ai",
|
url="https://github.com/unclecode/crawl4ai",
|
||||||
author="Unclecode",
|
author="Unclecode",
|
||||||
|
|||||||
Reference in New Issue
Block a user