From 47ec7e84f7918d661d6f61d682a569fa00f1a4aa Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Thu, 1 Jun 2017 17:53:46 -0400 Subject: [PATCH] Improve lftools description to include dependencies Change-Id: Ia9b757441ab7288ca7f02a0b58599c0333a5a4d1 Signed-off-by: Thanh Ha --- setup.py | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 13d96d28..2f2ead13 100644 --- a/setup.py +++ b/setup.py @@ -3,6 +3,18 @@ from setuptools import setup from lftools import __version__ +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 +these tools to be as generic as possible such that they can be deployed in +other environments. + +Ubuntu Dependencies: + + - build-essentials + - python-dev +''' + with open('requirements.txt') as f: install_reqs = f.read().splitlines() @@ -12,12 +24,9 @@ setup( author='Thanh Ha', author_email='thanh.ha@linuxfoundation.org', url='', - description='', - long_description=( - '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 these tools to be generic as possible ' - 'such that they can be deployed in other environments.'), + description=('Linux Foundation Release Engineering Tools' + 'Website: https://lf-releng-tools.readthedocs.io/en/latest/'), + long_description=long_desc, license='EPL', classifiers=[ 'Development Status :: 1 - Planning', -- 2.16.6