From e92ebbbcab2d529fe5dca25b5c3195b2b2fdc4e8 Mon Sep 17 00:00:00 2001 From: Johan Andersson Date: Sun, 20 Sep 2020 17:29:28 +0200 Subject: [PATCH] setup: force reading readme encoding to utf-8 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8fef9c4..82707ab 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ about = {} with open(os.path.join(srcdir, "svtplay_dl", "__version__.py")) as f: exec(f.read(), about) -with open("README.md") as f: +with open("README.md", encoding="utf-8") as f: readme = f.read() deps = []