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 f6dfe2d commit 67ee5b8Copy full SHA for 67ee5b8
setup.py
@@ -15,6 +15,10 @@
15
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]
16
dependency_links = [x.strip().replace('git+', '') for x in all_reqs if 'git+' not in x]
17
18
+# readme
19
+with open('README.md') as f:
20
+ readme = f.read()
21
+
22
setup(
23
name='label-maker',
24
author='Drew Bollinger',
@@ -36,4 +40,6 @@
36
40
include_package_data=True,
37
41
install_requires=install_requires,
38
42
dependency_links=dependency_links,
43
+ long_description=readme,
44
+ long_description_content_type="text/markdown"
39
45
)
0 commit comments