From b0078df7b4c6cbb6877eeb58ffb9f6c002789c56 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Thu, 30 May 2024 15:54:19 -0700 Subject: [PATCH] Replace relative path in `setup.py` with absolute path Closes #47 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7508fc0..8bd05f4 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,8 @@ def get_version(): version += f"a{alpha}" return version -with open("README.md", "r") as f: + +with open(os.path.join(BASEDIR, "README.md"), "r") as f: long_description = f.read() setup(