Fix #41, UnicodeDecodeError during setup in Windows

This commit is contained in:
Mart Sõmermaa 2020-05-15 23:40:59 +03:00 committed by GitHub
parent 4d567f4352
commit 0d5138d5cb

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(