From c5684bb87a9bdae3e96770596972f19ccaeb4a91 Mon Sep 17 00:00:00 2001 From: Hugo Date: Fri, 6 Apr 2018 13:11:28 +0300 Subject: [PATCH] Use Markdown on PyPI --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index f0d4e45..e74d241 100755 --- a/setup.py +++ b/setup.py @@ -1,9 +1,13 @@ #!/usr/bin/env python from setuptools import find_packages, setup +with open("README.md") as f: + long_description = f.read() setup( name="pylast", + long_description=long_description, + long_description_content_type="text/markdown", version="2.2.0.dev0", author="Amr Hassan and Contributors", install_requires=['six'],