From 3f8b47c08022bec1e2b6489753731af7ecd6fffb Mon Sep 17 00:00:00 2001 From: v3l0c1r4pt0r Date: Tue, 13 Mar 2018 18:42:35 +0100 Subject: [PATCH] setup.py: add long description --- setup.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/setup.py b/setup.py index 83b37f2..528ca29 100644 --- a/setup.py +++ b/setup.py @@ -17,4 +17,13 @@ 'Intended Audience :: Developers', 'Topic :: Software Development :: Libraries :: Python Modules', ], + long_description = '''MakeELF is a Python library to parse, modify and create ELF binaries. It provides following features: + + - easy to use, standard Python interface + - reading existing ELF files to Python representation + - modification of every aspect of ELF format structures + - ability to skip any validation to test other parsers for potential errors + - creating new valid ELF files with just one step + - easy serialization of every structure present in ELF file +''', )