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.
This commit is contained in:
Michael Jones
2010-01-09 10:07:46 +00:00
parent af4cee8df4
commit 9b472949ad
+3 -1
View File
@@ -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',