From 0a4cf3fdd51eed9f4e04e63d1af05a422b4bd025 Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Thu, 7 Sep 2017 00:28:17 -0400 Subject: [PATCH] Update README references to markdown --- MANIFEST.in | 2 +- scripts/rtv.1.template | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 29b4bae..bdbdeb7 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,7 +1,7 @@ include version.py include CHANGELOG.rst include AUTHORS.rst -include README.rst +include README.md include LICENSE include rtv.1 include rtv/templates/* diff --git a/scripts/rtv.1.template b/scripts/rtv.1.template index e154164..550dcb6 100644 --- a/scripts/rtv.1.template +++ b/scripts/rtv.1.template @@ -16,7 +16,7 @@ Press \fB?\fR to open the help screen. .TP .BR $XDG_CONFIG_HOME/rtv/rtv.cfg The configuration file can be used to customize default program settings, see -README.rst for more information. +README.md for more information. .TP .BR $XDG_CONFIG_HOME/rtv/refresh-token After you login to reddit, your most recent OAuth refresh token will be stored diff --git a/setup.py b/setup.py index ce0eb00..c249e50 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ else: def long_description(): - with codecs.open('README.rst', encoding='utf8') as f: + with codecs.open('README.md', encoding='utf8') as f: return f.read()