Skip to content

Commit 67ee5b8

Browse files
committed
Add readme to description
1 parent f6dfe2d commit 67ee5b8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]
1616
dependency_links = [x.strip().replace('git+', '') for x in all_reqs if 'git+' not in x]
1717

18+
# readme
19+
with open('README.md') as f:
20+
readme = f.read()
21+
1822
setup(
1923
name='label-maker',
2024
author='Drew Bollinger',
@@ -36,4 +40,6 @@
3640
include_package_data=True,
3741
install_requires=install_requires,
3842
dependency_links=dependency_links,
43+
long_description=readme,
44+
long_description_content_type="text/markdown"
3945
)

0 commit comments

Comments
 (0)