Update setup.py

This commit is contained in:
akamhy 2020-05-05 10:16:15 +05:30 committed by GitHub
parent f5acbcfc95
commit df851dce0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,8 @@
from distutils.core import setup from distutils.core import setup
import os.path import os.path
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f: with open("README.md", "r") as fh:
readme = f.read() readme = fh.read()
setup( setup(
name = 'waybackpy', name = 'waybackpy',