Skip to content

Commit 56050ec

Browse files
committed
add long description to setup.py
1 parent 1a77c48 commit 56050ec

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,14 @@ def get_version_and_cmdclass(package_name):
2020

2121
version, cmdclass = get_version_and_cmdclass('miniver')
2222

23+
with open('README.md') as readme_file:
24+
long_description = readme_file.read()
2325

2426
setup(
2527
name='miniver',
2628
description='minimal versioning tool',
29+
long_description=long_description,
30+
long_description_content_type='text/markdown',
2731
version=version,
2832
url='https://github.com/jbweston/miniver',
2933
author='Joseph Weston and Christoph Groth',

0 commit comments

Comments
 (0)