From 2b8e9e8372c417d5c78b8295d13dbaf3cc016114 Mon Sep 17 00:00:00 2001 From: Laurent LAPORTE Date: Fri, 10 Apr 2020 10:31:08 +0200 Subject: [PATCH] Add the missing ``long_description_content_type`` keyword in the ``setup`` command. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 9c030f3..a6634ac 100755 --- a/setup.py +++ b/setup.py @@ -155,6 +155,7 @@ def function_three(): author_email='tantale.solutions@gmail.com', description='Python @deprecated decorator to deprecate old python classes, functions or methods.', long_description=__doc__, + long_description_content_type="text/x-rst", keywords='deprecate,deprecated,deprecation,warning,warn,decorator', packages=['deprecated'], install_requires=['wrapt < 2, >= 1.10'],