From 73860e110acfc070443934e6653d636dcc3aacde Mon Sep 17 00:00:00 2001 From: Michael Hierweck Date: Sun, 29 May 2016 13:42:56 +0200 Subject: [PATCH] Fix build generation of long description. --- setup.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/setup.py b/setup.py index c3f66cb..c040da6 100644 --- a/setup.py +++ b/setup.py @@ -4,15 +4,7 @@ import os version = '0.2' long_description = ( - open('README.txt').read() - + '\n' + - 'Contributors\n' - '============\n' - + '\n' + - open('CONTRIBUTORS.txt').read() - + '\n' + - open('CHANGES.txt').read() - + '\n') + open('README.txt').read()) setup(name='hs.admin.api', version=version,