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",