From 0843be9d476698a0530a266ba2707abb8c4c3556 Mon Sep 17 00:00:00 2001 From: Alejandro Gil Date: Thu, 1 Feb 2024 07:24:12 -0700 Subject: [PATCH] Fixed long_description issue which prevented us from publishing whoosh-reloaded to PyPi. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9c81f311..84162410 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,8 @@ def run_tests(self): author_email="matt@whoosh.ca", maintainer="Sygil-Dev", description="Fast, pure-Python full text indexing, search, and spell checking library.", - long_description=open("README.md").read(), + long_description=open("README.md", "r").read(), + long_description_content_type="text/markdown", license="Two-clause BSD license", keywords="index search text spell", url="https://github.com/Sygil-Dev/whoosh-reloaded",