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 1a77c48 commit 56050ecCopy full SHA for 56050ec
setup.py
@@ -20,10 +20,14 @@ def get_version_and_cmdclass(package_name):
20
21
version, cmdclass = get_version_and_cmdclass('miniver')
22
23
+with open('README.md') as readme_file:
24
+ long_description = readme_file.read()
25
26
setup(
27
name='miniver',
28
description='minimal versioning tool',
29
+ long_description=long_description,
30
+ long_description_content_type='text/markdown',
31
version=version,
32
url='https://github.com/jbweston/miniver',
33
author='Joseph Weston and Christoph Groth',
0 commit comments