Skip to content

Commit fe2b479

Browse files
committed
Fix README
1 parent cc3ea38 commit fe2b479

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

setup.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,11 @@ def walklevel(some_dir, level=1):
8383

8484
assert version is not None
8585

86+
from pathlib import Path
87+
this_directory = Path(__file__).parent
88+
long_description = (this_directory / "README.md").read_text()
89+
90+
8691
# The whole setup:
8792
setup(
8893

@@ -112,6 +117,9 @@ def walklevel(some_dir, level=1):
112117
# For handle the MANIFEST.in:
113118
include_package_data=True,
114119

120+
long_description=long_description,
121+
long_description_content_type='text/markdown',
122+
115123
# The url to the official repo:
116124
# url='https://',
117125

0 commit comments

Comments
 (0)