We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c72666 commit aaa6778Copy full SHA for aaa6778
setup.py
@@ -1,10 +1,16 @@
1
from setuptools import setup
2
-import os
+
3
4
+with open("README.md") as f:
5
+ long_description = f.read()
6
7
8
setup(
9
name="pygraphblas",
- version="5.1.7.0",
10
+ version="5.1.7.1",
11
description="GraphBLAS Python bindings.",
12
+ long_description=long_description,
13
+ long_description_content_type="text/markdown",
14
author="Michel Pelletier",
15
packages=["pygraphblas"],
16
setup_requires=["pytest-runner"],
0 commit comments