Skip to content

Commit 44d70eb

Browse files
Merge pull request lukas-blecher#201 from llxlr/patch-1
feat: add utf-8 support for reading README file
2 parents 1b48858 + 712587b commit 44d70eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# read the contents of your README file
66
from pathlib import Path
77
this_directory = Path(__file__).parent
8-
long_description = (this_directory / 'README.md').read_text()
8+
long_description = (this_directory / 'README.md').read_text(encoding='utf-8')
99

1010
gui = [
1111
'PyQt5',

0 commit comments

Comments
 (0)