From 54a13771f4972f1f859d70985c10e30b7c9a1600 Mon Sep 17 00:00:00 2001 From: "hanan.shteingart" Date: Tue, 31 Jan 2017 11:46:46 +0200 Subject: [PATCH] fix utf-8 encoding when reading the readme.rst --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d42cef65..9b4cf1a6 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- from setuptools import setup -with open('README.rst') as readme_file: +with open('README.rst', encoding="utf8") as readme_file: readme = readme_file.read() setup(