mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
21 lines
404 B
Python
21 lines
404 B
Python
import os
|
|
import sys
|
|
|
|
sys.path.insert(0, os.path.abspath('.'))
|
|
|
|
|
|
extensions = ['sphinx.ext.autosummary']
|
|
autosummary_generate = True
|
|
autodoc_default_options = {'members': True}
|
|
|
|
|
|
def skip_member(app, what, name, obj, skip, options):
|
|
if name == 'skipmeth':
|
|
return True
|
|
elif name == '_privatemeth':
|
|
return False
|
|
|
|
|
|
def setup(app):
|
|
app.connect('autodoc-skip-member', skip_member)
|