Skip to content

Commit

Permalink
Merge pull request #83 from step21/patch-1
Browse files Browse the repository at this point in the history
Fix installing on Windows by specifying encoding
  • Loading branch information
akamhy authored Feb 7, 2022
2 parents e0d2d8e + 8a82381 commit 7eed12e
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
@@ -1,7 +1,7 @@
import os.path
from setuptools import setup

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

about = {}
Expand Down

0 comments on commit 7eed12e

Please sign in to comment.