From 668d4a42e4ca6cb74a6c61576929cc114bf10246 Mon Sep 17 00:00:00 2001 From: Ilya Shchepetkov Date: Fri, 15 Jan 2021 20:02:39 +0300 Subject: [PATCH] Mark readme as markdown for PyPI --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b80af82..0e28d86 100644 --- a/setup.py +++ b/setup.py @@ -203,13 +203,14 @@ def finalize_options(self): setuptools.setup( name="clade", - version="3.3", + version="3.3.1", author="Ilya Shchepetkov", author_email="shchepetkov@ispras.ru", url="https://github.com/17451k/clade", license="LICENSE.txt", description="Clade is a tool for extracting information about software build process and source code", long_description=open("README.md", encoding="utf8").read(), + long_description_content_type="text/markdown", python_requires=">=3.5", packages=["clade"], package_data={"clade": package_files("clade")},