From 4421339acd26977d9c7bb5bbaa09afd79c98232b Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 24 Feb 2018 18:37:03 -0500 Subject: [PATCH] setup.py Signed-off-by: Kenneth Reitz --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 4c82270..6a083b3 100644 --- a/setup.py +++ b/setup.py @@ -33,9 +33,8 @@ 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.rst'), encoding='utf-8') as f: -# long_description = '\n' + f.read() -long_description = '' +with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f: + long_description = '\n' + f.read() class UploadCommand(Command): """Support setup.py upload."""