From c3aef0a653aec2f966abf838325f267c16aab1a1 Mon Sep 17 00:00:00 2001 From: Peter Rose Date: Tue, 5 Jul 2022 19:42:50 -0700 Subject: [PATCH] use README.rst instead of .md --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 91e4e8e..9029430 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ here = path.abspath(path.dirname(__file__)) # Get the long description from the README file -with open(path.join(here, 'README.md'), encoding='utf-8') as f: +with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() print(find_packages(exclude=['contrib', 'docs', 'tests']))