From 546975507dc60572ba545951084d4d50bf234987 Mon Sep 17 00:00:00 2001 From: "Lott, Christopher (cl778h)" Date: Thu, 3 Oct 2019 11:39:33 -0400 Subject: [PATCH] Add content type for long description for twine Extend setup.py with the following to silence twine warning: long_description_content_type="text/x-rst", Signed-off-by: Lott, Christopher (cl778h) Change-Id: I831e38f56a42d9ff46da9b1b2aa47eee26e4ecd2 --- src/bindings/rmr-python/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bindings/rmr-python/setup.py b/src/bindings/rmr-python/setup.py index c1b3148..1d11d50 100644 --- a/src/bindings/rmr-python/setup.py +++ b/src/bindings/rmr-python/setup.py @@ -52,4 +52,5 @@ setup( data_files=[("", ["LICENSE.txt"])], install_requires=[], long_description=_long_descr(), + long_description_content_type="text/x-rst", ) -- 2.16.6