Skip to content

Commit

Permalink
Replace relative path in setup.py with absolute path (#69)
Browse files Browse the repository at this point in the history
Closes #47

Co-authored-by: Daniel McKnight <daniel@neon.ai>
  • Loading branch information
NeonDaniel and NeonDaniel authored May 30, 2024
1 parent ce2894e commit a55ae50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit a55ae50

Please sign in to comment.