From 079af5baf91239a5dc9579f92cdfe7d96cbf6f0c Mon Sep 17 00:00:00 2001 From: Vishal Pawar Date: Sat, 7 Dec 2019 06:39:19 +0000 Subject: [PATCH] modified setup.py file to resolve setup.py issue on windows --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 16333c4..dfcf064 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup -with open("README.md") as readme_file: +with open("README.md", encoding="utf-8") as readme_file: readme = readme_file.read() install_requirements = ["click", "markdown", "requests"]