Merge pull request #42 from mrts/patch-1

Fix #41, UnicodeDecodeError during setup in Windows
This commit is contained in:
Colin Davis 2020-05-15 16:42:27 -04:00 committed by GitHub
commit d690273550

View File

@ -3,7 +3,7 @@ try:
except ImportError:
from distutils.core import setup
with open('README.rst') as file:
with open('README.rst', encoding='utf-8') as file:
long_description = file.read()
setup(