From 85f52ec0643618bbeb636c7d742eba86a8a76a3e Mon Sep 17 00:00:00 2001 From: Lukas Holecek Date: May 16 2019 04:56:26 +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. See also: https://pypi.org/help/#description-content-type Signed-off-by: Lukas Holecek --- diff --git a/setup.py b/setup.py index c2950fc..8cfa69c 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,7 @@ setup(name='waiverdb', version=get_project_version(), description='An engine for storing waivers against test results.', long_description=README, + long_description_content_type="text/markdown", author='Red Hat, Inc.', author_email='qa-devel@lists.fedoraproject.org', license='GPLv2+',