From a0e88963aa60b475a13d831cb108ccb49c267dd3 Mon Sep 17 00:00:00 2001 From: Kaliko Jack Date: Sun, 19 Jan 2014 17:33:05 +0100 Subject: [PATCH] Add explicit file encoding for open in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 18e0007..4e49c65 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ An MPD (Music Player Daemon) client library written in pure Python.\ """ -with open('README.rst') as file: +with open('README.rst', encoding='UTF-8') as file: LONG_DESCRIPTION = file.read() CLASSIFIERS = [ -- 2.39.2