From f3aa39bda60f9ce0cfc9a66cf81bc5726ce23f9f Mon Sep 17 00:00:00 2001 From: Prashanth Varma Manthena Date: Wed, 1 Apr 2026 13:17:40 -0700 Subject: [PATCH] Apply suggested fix to setup.py from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> Signed-off-by: Prashanth Varma Manthena --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c95d3f19..6da555b2 100644 --- a/setup.py +++ b/setup.py @@ -37,6 +37,9 @@ "playwright >= 1.40.0, < 2.0.0", ] +with open('README.md', encoding='utf-8') as f: + LONG_DESCRIPTION = f.read() + setup( name=NAME, version=VERSION, @@ -49,7 +52,7 @@ packages=find_packages(), include_package_data=True, long_description_content_type='text/markdown', - long_description=open('README.md').read(), + long_description=LONG_DESCRIPTION, package_data={"graphiant_sdk": ["py.typed"]}, project_urls={ "Source Code": "https://github.com/Graphiant-Inc/graphiant-sdk-python"