This project's documentation is available on ReadTheDocs (RTD)
 
 <https://lf-releng-tools.readthedocs.io>
+
+LF Tools is a collection of scripts and utilities that are useful to Linux
+Foundation projects' CI and Releng related activities. We try to create
+these tools to be as generic as possible such that they are reusable in other
+CI environments.
+
+Ubuntu Dependencies:
+
+- build-essentials
+- python-dev
 
 from setuptools import find_packages
 from setuptools import setup
 
+from lftools import __summary__
 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
-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()
 
     name='lftools',
     version=__version__,
     author='Thanh Ha',
-    author_email='thanh.ha@linuxfoundation.org',
-    url='',
-    description=(desc),
-    long_description=long_desc,
+    author_email='releng@linuxfoundation.org',
+    url='https://lf-releng-tools.readthedocs.io',
+    description=__summary__,
+    long_description=open("README.md").read(),
     license='EPL',
     classifiers=[
         'Development Status :: 1 - Planning',