Skip to content

Commit

Permalink
Merge pull request #10 from pajoma/main
Browse files Browse the repository at this point in the history
Fix for missing encoding property in setup.py
  • Loading branch information
abdeladim-s committed May 22, 2023
2 parents cef9203 + a7e2327 commit f0d9536
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 @@ -125,7 +125,7 @@ def build_extension(self, ext: CMakeExtension) -> None:

# read the contents of your README file
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
long_description = (this_directory / "README.md").read_text(encoding='utf-8')

# The information here can also be placed in setup.cfg - better separation of
# logic and declaration, and simpler if you include description/version in a file.
Expand Down

0 comments on commit f0d9536

Please sign in to comment.