Skip to content

Commit 2eaf23e

Browse files
authored
Merge pull request #33 from ashvardanian/main-dev
Main devMake: Explicitly UTF-8 encoding on Windows
2 parents be6d80d + e97b05d commit 2eaf23e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,14 @@
6464

6565

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

7070

7171
setup(
7272
name=__lib_name__,
7373
version=__version__,
74+
author="Ash Vardanian",
7475
description="Crunch 100+ GB Strings in Python with ease",
7576
long_description=long_description,
7677
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)