From df851dce0c69e8db9087c5927639e65c9df7ba65 Mon Sep 17 00:00:00 2001 From: akamhy <64683866+akamhy@users.noreply.github.com> Date: Tue, 5 May 2020 10:16:15 +0530 Subject: [PATCH] Update setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 278473d..e5472f5 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,8 @@ from distutils.core import setup import os.path -with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f: - readme = f.read() +with open("README.md", "r") as fh: + readme = fh.read() setup( name = 'waybackpy',