Add content type for long description for twine 60/1060/2
authorLott, Christopher (cl778h) <cl778h@att.com>
Thu, 3 Oct 2019 15:39:33 +0000 (11:39 -0400)
committerLott, Christopher (cl778h) <cl778h@att.com>
Thu, 3 Oct 2019 15:42:28 +0000 (11:42 -0400)
Extend setup.py with the following to silence twine warning:
  long_description_content_type="text/x-rst",

Signed-off-by: Lott, Christopher (cl778h) <cl778h@att.com>
Change-Id: I831e38f56a42d9ff46da9b1b2aa47eee26e4ecd2

src/bindings/rmr-python/setup.py

index c1b3148..1d11d50 100644 (file)
@@ -52,4 +52,5 @@ setup(
     data_files=[("", ["LICENSE.txt"])],
     install_requires=[],
     long_description=_long_descr(),
+    long_description_content_type="text/x-rst",
 )