From 6d382e3eed985d3c74e5de799076b57eb35110f9 Mon Sep 17 00:00:00 2001 From: Brett Randall Date: Mon, 21 May 2018 17:49:32 +1000 Subject: [PATCH] Added long_description for setuptools. Signed-off-by: Brett Randall --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 7e973ae7..52a01e94 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,11 @@ import os import io -# long_description = io.open( - # os.path.join(os.path.dirname(__file__), 'README.rst'), encoding='utf-8').read() - setup( name="httpbin", version="0.9.0", description="HTTP Request and Response Service", - # long_description=long_description, + long_description="A simple HTTP Request & Response Service, written in Python + Flask.", # The project URL. url='https://github.com/requests/httpbin',