From 3fda32b522cafc2e6955a04bb912a4fe33b09c77 Mon Sep 17 00:00:00 2001 From: Romain Demeure Date: Wed, 25 Mar 2026 10:23:16 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20add=20encoding=3Dutf-8=20?= =?UTF-8?q?to=20long=5Fdescription=20in=20setup.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3726d15..e2f1b14 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ packages=['oks_cli'], author="Outscale SAS", author_email="opensource@outscale.com", - long_description=open("README.md").read(), + long_description=open("README.md", encoding="utf-8").read(), long_description_content_type="text/markdown", include_package_data=True, license="BSD",