From 904934d090cf0e584ab56411db389b5558d1da05 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Mart=20S=C3=B5mermaa?= <mrts.pydev@gmail.com>
Date: Fri, 15 May 2020 23:40:59 +0300
Subject: [PATCH] Fix #41, UnicodeDecodeError during setup in Windows

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 13c4770..81054cd 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ try:
 except ImportError:
     from distutils.core import setup
 
-with open('README.rst') as file:
+with open('README.rst', encoding='utf-8') as file:
     long_description = file.read()
 
 setup(