From 001e18c3ef1446ab16ac4a74580f116c6a4bd2c6 Mon Sep 17 00:00:00 2001 From: Artyom Vancyan Date: Fri, 2 Dec 2022 23:01:00 +0400 Subject: [PATCH] Enable long description to show README on PyPI --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 1b00861..e2dc34c 100644 --- a/setup.py +++ b/setup.py @@ -21,8 +21,8 @@ assert "-" not in version assert "." in version -# with open("README.md", "r", encoding="utf-8") as fp: -# long_description = fp.read() +with open("README.md", "r", encoding="utf-8") as fp: + long_description = fp.read() setuptools.setup( name="fuzzymap", @@ -30,8 +30,8 @@ author="Artyom Vancyan", author_email="artyom@pysnippet.org", description="Python dictionary with a FUZZY key-matching opportunity", - # long_description=long_description, - # long_description_content_type="text/markdown", + long_description=long_description, + long_description_content_type="text/markdown", url="https://github.com/pysnippet/fuzzymap", packages=setuptools.find_packages(), classifiers=[