Explicitly open READMEFILE as utf-8

This commit is contained in:
Christopher Allan Webber 2014-09-12 10:42:23 -05:00
parent 99c466045a
commit 9156ab68d0

View File

@ -89,7 +89,7 @@ install_requires = [
# 'Pillow',
] + py2_only_install_requires
with open(READMEFILE) as fobj:
with open(READMEFILE, encoding="utf-8") as fobj:
long_description = fobj.read()
try: