diff --git a/setup.py b/setup.py index c6dee21..6c47623 100644 --- a/setup.py +++ b/setup.py @@ -5,8 +5,8 @@ _long_description_content_type = "text/plain" try: _long_description = subprocess.check_output( - ["pandoc", "--from", "markdown", "--to", "rst", "README.md"]).decode("utf-8") - _long_description_content_type = "text/x-rst" + ["pandoc", "--from", "markdown", "--to", "markdown", "README.md"]).decode("utf-8") + _long_description_content_type = "text/markdown" except (subprocess.CalledProcessError, FileNotFoundError): pass @@ -16,7 +16,7 @@ setuptools.setup( name="oelint_parser", - version="1.0.12", + version="1.1.0", author="Konrad Weihmann", author_email="kweihmann@outlook.com", description="Alternative parser for bitbake recipes",