From 5caa8fed38c16d897a5ecc1c7f5490e87e269682 Mon Sep 17 00:00:00 2001 From: Alessio Bogon Date: Fri, 9 Jan 2015 00:22:57 +0100 Subject: [PATCH] Improve setup.py description --- setup.py | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index b9207dc..26f3f02 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,13 @@ +"""cheat + ~~~~~~~~ + + cheat allows you to create and view interactive cheatsheets on the + command-line. It was designed to help remind *nix system administrators of + options for commands that they use frequently, but not frequently enough + to remember. + :license: GPL3 +""" + from setuptools import setup, find_packages setup( @@ -6,10 +16,8 @@ setup( author = 'Chris Lane', author_email = 'chris@chris-allen-lane.com', license = 'GPL3', - description = 'cheat allows you to create and view interactive cheatsheets ' - 'on the command-line. It was designed to help remind *nix system ' - 'administrators of options for commands that they use frequently, but not ' - 'frequently enough to remember.', + description = 'cheat allows you to create and view interactive cheatsheets on the command-line', + long_description = __doc__, url = 'https://github.com/chrisallenlane/cheat', packages = find_packages(), package_data = {