Skip to content

Commit

Permalink
Fix UnicodeDecodeError by reading README.md with UTF-8 encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
shivkumar0757 committed Jun 30, 2024
1 parent d582869 commit a08f21d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def run(self):
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",
Expand Down

0 comments on commit a08f21d

Please sign in to comment.