Skip to content

Commit 733068e

Browse files
committed
Update setup.py
1 parent f0b0d26 commit 733068e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

setup.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
from setuptools import setup
2+
from pathlib import Path
23

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

Comments
 (0)