From a55ae503cd42d912d6023545645a0341fc6519db Mon Sep 17 00:00:00 2001 From: Daniel McKnight <34697904+NeonDaniel@users.noreply.github.com> Date: Thu, 30 May 2024 16:09:56 -0700 Subject: [PATCH] Replace relative path in `setup.py` with absolute path (#69) Closes #47 Co-authored-by: Daniel McKnight --- 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(