From 2b3beac4b412e851648d01a6200a2a4dd4464f38 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sun, 21 Feb 2021 17:47:06 -0500 Subject: [PATCH] Test putting readme in docs dir --- README.rst => docs/README.rst | 0 setup.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename README.rst => docs/README.rst (100%) diff --git a/README.rst b/docs/README.rst similarity index 100% rename from README.rst rename to docs/README.rst diff --git a/setup.py b/setup.py index e31e359..20e748d 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ # along with this program. If not, see . from setuptools import setup -with open('README.rst', encoding='utf-8') as f: +with open('docs/README.rst', encoding='utf-8') as f: readme = f.read()