Skip to content

Commit

Permalink
Merge pull request ashvardanian#33 from ashvardanian/main-dev
Browse files Browse the repository at this point in the history
Main devMake: Explicitly UTF-8 encoding on Windows
  • Loading branch information
ashvardanian authored Aug 31, 2023
2 parents 8d2436d + 205acb4 commit 5b8ceb2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,14 @@


this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md")) as f:
with open(os.path.join(this_directory, "README.md"), "r", encoding="utf-8") as f:
long_description = f.read()


setup(
name=__lib_name__,
version=__version__,
author="Ash Vardanian",
description="Crunch 100+ GB Strings in Python with ease",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 5b8ceb2

Please sign in to comment.