From d0ddfe78074bf395acd1da78b89fc1db9e439044 Mon Sep 17 00:00:00 2001 From: Thibault North Date: Thu, 9 Mar 2023 10:43:22 +0100 Subject: [PATCH] Open README.md rather than the unexisting README.rst file in setup.py Signed-off-by: Thibault North --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ffbb446..1f2c83a 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ def git_pep440_version(): except IOError: version = 'unknown' -with open('README.rst') as f: +with open('README.md') as f: readme = f.read() setup(name = name,