From b3fa8c1605d77fbe769c8d5d55b69377016a4e24 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 27 Feb 2024 16:47:30 +0530 Subject: [PATCH] updated with open --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8c66fc4..8472b68 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,9 @@ +import io from setuptools import setup, find_packages from os import path this_directory = path.abspath(path.dirname(__file__)) -with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: +with io.open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup(