Description: Fix python3 encoding error
Author: Angel Abad <angel@debian.org>
Forwarded: https://github.com/ralphm/wokkel/issues/25
Last-Update: 2018-04-01

--- wokkel-18.0.0~rc4.orig/setup.py
+++ wokkel-18.0.0~rc4/setup.py
@@ -4,6 +4,7 @@
 # See LICENSE for details.
 
 from setuptools import setup
+import codecs
 
 # Make sure 'twisted' doesn't appear in top_level.txt
 
@@ -27,7 +28,7 @@ else:
 
     egg_info.write_toplevel_names = _hacked_write_toplevel_names
 
-with open('README.rst', 'r') as f:
+with codecs.open('README.rst', 'r', 'utf-8') as f:
     long_description = f.read()
 
 setup(name='wokkel',
