From 78db8fa7223154f3d351052c17bcd80cd41e80ed Mon Sep 17 00:00:00 2001 From: Caster Date: Fri, 14 Mar 2025 03:25:28 +0500 Subject: [PATCH] utf8 encoding support for setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b12ea4f..9a5ce7c 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( author_email="caster@exploit.org", scripts=['sara.py'], description="RouterOS Security Inspector", - long_description=open('README.md').read(), + long_description=open('README.md', encoding="utf8").read(), long_description_content_type='text/markdown', license="Apache-2.0", keywords=['mikrotik', 'routeros', 'config analyzer', 'network security',], @@ -23,4 +23,4 @@ setup( "console_scripts": ["sara = sara:main"], }, python_requires='>=3.11', -) \ No newline at end of file +)