From 05825c0b26bf80d7ec60f725a0f6fbdc7687c56e Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Sun, 24 Apr 2016 11:54:31 +1000 Subject: [PATCH] Fix link to README.md setup.py looks for README.rst, not README.md --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 49406c3..6fcc8fc 100755 --- a/setup.py +++ b/setup.py @@ -6,10 +6,10 @@ import re basepath = os.path.dirname(__file__) -readme_rst = os.path.join(basepath, "README.rst") +readme_md = os.path.join(basepath, "README.md") requirements_txt = os.path.join(basepath, "requirements.txt") -with open(readme_rst) as readme: +with open(readme_md) as readme: long_description = readme.read() with open(requirements_txt) as reqs: