From 3ed0fe8c4a688f22c262e68ecb2fb4ea88e81c91 Mon Sep 17 00:00:00 2001 From: Dougal Matthews Date: Thu, 23 Oct 2014 08:03:13 +0100 Subject: [PATCH] Added initial descriptions for PyPi based on those on the website Fixes #159 --- setup.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index aa6b2369..9da482a0 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ import sys name = 'mkdocs' package = 'mkdocs' -description = 'In progress.' +description = 'Project documentation with Markdown.' url = 'http://www.mkdocs.org' author = 'Tom Christie' author_email = 'tom@tomchristie.com' @@ -23,7 +23,12 @@ install_requires = [ 'ghp-import>=0.4.1' ] -long_description = """Work in progress.""" +long_description = ( + "MkDocs is a fast, simple and downright gorgeous static site generator " + "that's geared towards building project documentation. Documentation " + "source files are written in Markdown, and configured with a single YAML " + "configuration file." +) def get_version(package):