Skip to content

Commit 175e411

Browse files
committed
Updated files with 'repo_helper'.
1 parent 35bc1a2 commit 175e411

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ sphinx:
1313
formats: all
1414

1515
python:
16-
version: 3.6
16+
version: 3.8
1717
install:
1818
- requirements: requirements.txt
1919
- requirements: doc-source/requirements.txt

doc-source/conf.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,24 @@
104104
texinfo_documents = [('index', slug, project, author, slug, project, 'Miscellaneous')]
105105

106106

107+
autodoc_default_options = {
108+
'members': None, # Include all members (methods).
109+
'special-members': None,
110+
"autosummary": None,
111+
'exclude-members': ','.join([ # Exclude "standard" methods.
112+
"__dict__",
113+
"__dir__",
114+
"__weakref__",
115+
"__module__",
116+
"__annotations__",
117+
"__orig_bases__",
118+
"__parameters__",
119+
"__subclasshook__",
120+
"__init_subclass__",
121+
])
122+
}
123+
124+
107125
# Extensions to theme docs
108126
def setup(app):
109127
from sphinx.domains.python import PyField

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
# * mypy
88
[metadata]
99
name = coverage_pyver_pragma
10-
description = Plugin for Coverage.py to selectively ignore branches depending on the Python version.
1110
author = Dominic Davis-Foster
1211
author_email = [email protected]
1312
license = GNU Lesser General Public License v3 or later (LGPLv3+)

0 commit comments

Comments
 (0)