From 9b472949ad94bc936692b3dabd3da09291d2ab44 Mon Sep 17 00:00:00 2001 From: Michael Jones Date: Sat, 9 Jan 2010 10:07:46 +0000 Subject: [PATCH] Updated setup.py for markdown formatted README setup.py was still referencing README.rst. We changed to README.md because of superior github rendering of markdown, we might need to changed back if any part of the python distribution system requires the description, which is taken from the README, to be in restructured text. --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ed63dba..fc11f14 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,9 @@ class RunTests(Command): runner.run(suite) -long_description = codecs.open("README.rst", "r", "utf-8").read() + + +long_description = codecs.open("README.md", "r", "utf-8").read() setup( name='sphinxtogithub',