Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add long description to setup() #12

Merged
merged 1 commit into from
Oct 10, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add long description to setup()
  • Loading branch information
zurk committed Oct 10, 2018
commit 843db9b55ab16f55b7e1cf43973f0d936860f29a
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