Explicitly open READMEFILE as utf-8
authorChristopher Allan Webber <cwebber@dustycloud.org>
Fri, 12 Sep 2014 15:42:23 +0000 (10:42 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Fri, 12 Sep 2014 15:42:23 +0000 (10:42 -0500)
setup.py

index fd089a5a69137c71ed247b2b3d076d20814474dc..0c182e98f11e637d2fa9ea7dc9344bcdc25e7576 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -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: