From 5f78a6f20bdbc98b9fcd9ad0ec9e778c989c8886 Mon Sep 17 00:00:00 2001 From: JarbasAI <33701864+JarbasAl@users.noreply.github.com> Date: Tue, 15 Oct 2024 05:19:35 +0100 Subject: [PATCH] fix:long description (#13) semver automations fail if dont use full path for README --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 300e529..8ed4bfb 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def find_resource_files(): return package_data -with open("README.md", "r") as f: +with open(path.join(path.abspath(path.dirname(__file__)), "README.md"), "r") as f: long_description = f.read()