Skip to content

Commit

Permalink
feat: add utf-8 support for reading README file
Browse files Browse the repository at this point in the history
  • Loading branch information
llxlr authored Sep 28, 2022
1 parent 1b48858 commit 712587b
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 @@ -5,7 +5,7 @@
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / 'README.md').read_text()
long_description = (this_directory / 'README.md').read_text(encoding='utf-8')

gui = [
'PyQt5',
Expand Down

0 comments on commit 712587b

Please sign in to comment.