$OpenBSD: patch-setup_py,v 1.2 2016/08/19 07:39:05 shadchin Exp $
--- setup.py.orig	Thu Aug 11 05:49:19 2016
+++ setup.py	Thu Aug 18 10:14:50 2016
@@ -1,8 +1,9 @@
 from setuptools import setup, find_packages
 import os
+import codecs
 
-long_description = open(
-    os.path.join(os.path.dirname(__file__), 'README.rst')).read()
+long_description = codecs.open(
+    os.path.join(os.path.dirname(__file__), 'README.rst'), encoding='utf-8').read()
 
 setup(
     name="httpbin",
