From d8b7f37d3b600e15af04822751ee253e7d218e7e Mon Sep 17 00:00:00 2001 From: Lukas Holecek Date: May 16 2019 08:33:51 +0000 Subject: Fix description content type for Python package By default the content type for description in set in "setup.py" is reStructuredText. Fixes uploading the package with to PyPI twine. Packages are not uploaded on PyPI, but let's keep "setup.py" consistent with WaiverDB. See also: https://pypi.org/help/#description-content-type Signed-off-by: Lukas Holecek --- diff --git a/setup.py b/setup.py index af5a46f..989a62f 100644 --- a/setup.py +++ b/setup.py @@ -70,6 +70,7 @@ setup( ' certain gating points in a software delivery pipeline' ), long_description=README, + long_description_content_type="text/markdown", # Possible options are at https://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ 'Development Status :: 1 - Planning',