1+ # vim: set filetype=python fileencoding=utf-8:
2+ # -*- mode: python ; coding: utf-8 -*-
3+
14''' Configuration file for the Sphinx documentation builder.
25
36 This file only contains a selection of the most common options.
@@ -94,7 +97,7 @@ linkcheck_ignore = [
9497 # Package does not exist during initial development.
9598 r'https://pypi.org/project/{{ package_name }}/' ,
9699 # Github aggressively rate-limits access to certain blobs.
97- r'https://github\.com/emcd/python-project-common /blob/.*'
100+ r'https://github\.com/.*/.* /blob/.*' ,
98101]
99102
100103# -- Options for HTML output -------------------------------------------------
@@ -114,13 +117,13 @@ html_static_path = [ '_static' ]
114117
115118autodoc_default_options = {
116119 'member-order' : 'groupwise' ,
117- 'imported-members': False,
118- 'inherited-members': True,
120+ 'members' : True ,
119121 'show-inheritance' : True ,
120- 'undoc -members': True ,
122+ # 'special -members': '__call__' ,
121123}
122124
123- #autodoc_typehints = 'description'
125+ autodoc_typehints = 'none'
126+ autodoc_use_type_comments = False
124127
125128# -- Options for intersphinx extension ---------------------------------------
126129# https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html#configuration
0 commit comments