From 26232392287f5db0a66b5cb885c40d498d5adc56 Mon Sep 17 00:00:00 2001 From: Christian Stefanescu Date: Thu, 4 May 2023 13:50:04 +0200 Subject: [PATCH] Fix long_description in package metadata --- setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 173ee30..7f57b09 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,15 @@ from setuptools import setup, find_packages +from pathlib import Path + +this_directory = Path(__file__).parent +long_description = (this_directory / "README.rst").read_text() setup( name="memorious", version="2.6.1", description="A minimalistic, recursive web crawling library for Python.", - long_description="", + long_description=long_description, + long_description_content_type="text/x-rst", classifiers=[ "Intended Audience :: Developers", "Operating System :: OS Independent",