From 2bf38e5b3b3a07a6681f1b217f98fc02dfa1211a Mon Sep 17 00:00:00 2001 From: JarbasAI <33701864+JarbasAl@users.noreply.github.com> Date: Tue, 15 Oct 2024 05:23:34 +0100 Subject: [PATCH] fix:long description (#5) 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 93434e8..8f38bc4 100755 --- 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()