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 6561541 commit c625591Copy full SHA for c625591
setup.py
@@ -30,10 +30,15 @@ def get_version():
30
with open('requirements.txt') as f:
31
_requirements = f.read().splitlines()
32
33
+with open('README.rst', encoding='utf-8') as f:
34
+ _long_description = f.read()
35
+
36
setup(
37
name = 'cppman',
38
version = __version__,
- 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',
42
author = 'Wei-Ning Huang (AZ)',
43
author_email = 'aitjcize@gmail.com',
44
url = 'https://github.com/aitjcize/cppman',
0 commit comments