From 8bef5ea57000299ba9d757a3a53d0ca34fd6891b Mon Sep 17 00:00:00 2001 From: Amith Koujalgi Date: Tue, 30 Jul 2024 11:42:45 +0530 Subject: [PATCH] Added Gemini integration Signed-off-by: Amith Koujalgi --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f42804f..841d100 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ def get_requirements_to_install(): def get_description() -> str: __curr_location__ = os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__))) - rst_txt_file_as_str = f'{__curr_location__}/README.rst' + rst_txt_file_as_str = f'{__curr_location__}/README.md' with open(rst_txt_file_as_str, 'r') as rst_file: desc = rst_file.read() return desc @@ -44,7 +44,7 @@ def get_version(): version=get_version(), description='An interactive commandline interface that brings intelligence to your logs.', long_description=get_description(), - long_description_content_type='text/markdown', + long_description_content_type='text/markdown; charset=UTF-8; variant=GFM', install_requires=get_requirements_to_install(), author='Amith Koujalgi', author_email='koujalgi.amith@gmail.com',