From 843db9b55ab16f55b7e1cf43973f0d936860f29a Mon Sep 17 00:00:00 2001 From: Konstantin Slavnov Date: Wed, 10 Oct 2018 15:02:27 +0300 Subject: [PATCH] Add long description to setup() --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b0f2233..5f27c35 100644 --- a/setup.py +++ b/setup.py @@ -8,6 +8,8 @@ import sys import sysconfig +with open("README.md") as f: + long_description = f.read() def get_python_library(): """Get path to the python library associated with the current python @@ -69,7 +71,9 @@ def is_pure(self): setup( name="libMHCUDA", description="Accelerated Weighted MinHash-ing on GPU", - version="2.1.0", + long_description=long_description, + long_description_content_type="text/markdown", + version="2.1.1", license="Apache Software License", author="Vadim Markovtsev", author_email="vadim@sourced.tech",