We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edb51b5 commit 5cdba08Copy full SHA for 5cdba08
setup.py
@@ -1,4 +1,5 @@
1
#!/usr/bin/env python3
2
+import pathlib
3
from setuptools import setup, find_packages
4
5
setup(
@@ -25,4 +26,7 @@
25
26
"Programming Language :: Python :: 3 :: Only",
27
],
28
keywords="lighthouse storage sdk python filecoin ipfs web3 perpetual",
29
+ long_description=(
30
+ (pathlib.Path(__file__).parent.resolve()) / "README.md"
31
+ ).read_text(encoding="utf-8"),
32
)
0 commit comments