From 2c03ef7703b93d56fd410ca786d66389245927f8 Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Wed, 21 Jun 2017 11:39:22 -0400 Subject: [PATCH] Use a multiline string for description Fix up some formatting issues by using a multiline string. Change-Id: I8f199a813dd6fde2b5b4af8598aa93c847287a38 Signed-off-by: Thanh Ha --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2f2ead13..2778c419 100644 --- a/setup.py +++ b/setup.py @@ -3,6 +3,10 @@ from setuptools import setup from lftools import __version__ +desc = '''Linux Foundation Release Engineering Tools +Website: https://lf-releng-tools.readthedocs.io/en/latest/ +''' + long_desc = ''' LF Tools is a collection of scripts and utilities that are useful to multiple Linux Foundation project CI and Releng related activities. We try to create @@ -24,8 +28,7 @@ setup( author='Thanh Ha', author_email='thanh.ha@linuxfoundation.org', url='', - description=('Linux Foundation Release Engineering Tools' - 'Website: https://lf-releng-tools.readthedocs.io/en/latest/'), + description=(desc), long_description=long_desc, license='EPL', classifiers=[ -- 2.16.6