We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc3ea38 commit fe2b479Copy full SHA for fe2b479
1 file changed
setup.py
@@ -83,6 +83,11 @@ def walklevel(some_dir, level=1):
83
84
assert version is not None
85
86
+from pathlib import Path
87
+this_directory = Path(__file__).parent
88
+long_description = (this_directory / "README.md").read_text()
89
+
90
91
# The whole setup:
92
setup(
93
@@ -112,6 +117,9 @@ def walklevel(some_dir, level=1):
112
117
# For handle the MANIFEST.in:
113
118
include_package_data=True,
114
119
120
+ long_description=long_description,
121
+ long_description_content_type='text/markdown',
122
115
123
# The url to the official repo:
116
124
# url='https://',
125
0 commit comments