From abc0dc8c70473920cd38ed6aa033fcd0e625057a Mon Sep 17 00:00:00 2001 From: Mallory Hancock Date: Sat, 2 Mar 2019 12:26:21 -0800 Subject: [PATCH] reverting back to 2 readmes --- MANIFEST.in | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index bb3ec5f..9561fb1 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1 @@ -include README.md +include README.rst diff --git a/setup.py b/setup.py index 326c3ba..63bda35 100755 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ here = os.path.abspath(os.path.dirname(__file__)) # Import the README and use it as the long-description. # Note: this will only work if 'README.rst' is present in your MANIFEST.in file! -with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f: +with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = '\n' + f.read() # Load the package's __version__.py module as a dictionary.