Skip to content

Commit

Permalink
Fix long_description in package metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
stchris committed May 4, 2023
1 parent 0851e54 commit 2623239
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 2623239

Please sign in to comment.