Skip to content

Commit

Permalink
Merge pull request #12 from zurk/feature/long_description
Browse files Browse the repository at this point in the history
Add long description to setup()
  • Loading branch information
vmarkovtsev authored Oct 10, 2018
2 parents 9053976 + 843db9b commit 8866aea
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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="[email protected]",
Expand Down

0 comments on commit 8866aea

Please sign in to comment.