diff --git a/setup.py b/setup.py index 53507c0..8d9a7ba 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,8 @@ +import os import setuptools +setup_path = os.path.dirname(os.path.realpath(__file__)) + install_requires = [ 'compoundfiles', 'compressed_rtf', @@ -7,7 +10,7 @@ install_requires = [ 'html2text', ] -with open("README.md", "r") as fh: +with open(f"{setup_path}/README.md", "r") as fh: long_description = fh.read() setuptools.setup(