# HG changeset patch
# User Charlie Clark <charlie.clark@clark-consulting.eu>
# Date 1431523602 -7200
#      Wed May 13 15:26:42 2015 +0200
# Node ID bd0a3056eb2bf989662cb118c5c1c8731c634167
# Parent  dca4325bfd6c5f3babf11827c23bfd32a522d76d
Explicitly use UTF-8 for the README.

diff --git a/et_xmlfile/__init__.py b/et_xmlfile/__init__.py
--- a/et_xmlfile/__init__.py
+++ b/et_xmlfile/__init__.py
@@ -3,7 +3,7 @@
 from .xmlfile import xmlfile
 
 # constants
-__version__ = '1.0.0'
+__version__ = '1.0.1'
 
 __author__ = 'See ATUHORS.txt'
 __license__ = 'MIT'
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@
 them here.
 
 """
-
+import codecs
 import sys
 import os
 import warnings
@@ -32,7 +32,7 @@
 
 here = os.path.abspath(os.path.dirname(__file__))
 try:
-    with open(os.path.join(here, 'README.rst')) as f:
+    with codecs.open(os.path.join(here, 'README.rst'), encoding="utf-8") as f:
         README = f.read()
 except IOError:
     README = ''