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 f0b0d26 commit 733068eCopy full SHA for 733068e
setup.py
@@ -1,3 +1,10 @@
1
from setuptools import setup
2
+from pathlib import Path
3
-setup()
4
+this_directory = Path(__file__).parent
5
+long_description = (this_directory / "README.md").read_text()
6
+
7
+setup(
8
+ long_description=long_description,
9
+ long_description_content_type='text/markdown'
10
+)
0 commit comments