From f1a2ad66dffcefccf0c4a90c59102bafde6501e4 Mon Sep 17 00:00:00 2001 From: pyohei Date: Mon, 11 Jun 2018 07:28:57 +0900 Subject: [PATCH] Fix setup.py to be able to read README.rst on PyPI. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0ec750e..16a6930 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from distutils.core import setup try: - with open('README') as f: + with open('README.rst') as f: long_description = f.read() except: long_description = ''