Skip to content

Commit c625591

Browse files
committed
cppman: provide long description to setup
1 parent 6561541 commit c625591

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,15 @@ def get_version():
3030
with open('requirements.txt') as f:
3131
_requirements = f.read().splitlines()
3232

33+
with open('README.rst', encoding='utf-8') as f:
34+
_long_description = f.read()
35+
3336
setup(
3437
name = 'cppman',
3538
version = __version__,
36-
description = 'C++ 98/11/14/17/20 manual pages for Linux/MacOS',
39+
description = 'C++ manual pages for Linux/MacOS',
40+
long_description = _long_description,
41+
long_description_content_type = 'text/x-rst',
3742
author = 'Wei-Ning Huang (AZ)',
3843
author_email = 'aitjcize@gmail.com',
3944
url = 'https://github.com/aitjcize/cppman',

0 commit comments

Comments
 (0)