Tweak conf.py in prep for less boilerplatey versions of module files
This commit is contained in:
parent
2346f1a1e9
commit
4a98671bf6
|
@ -4,4 +4,8 @@ sys.path.append(os.path.abspath('..'))
|
||||||
sys.path.append(os.path.abspath('../..'))
|
sys.path.append(os.path.abspath('../..'))
|
||||||
from shared_conf import *
|
from shared_conf import *
|
||||||
|
|
||||||
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx']
|
# Enable autodoc, intersphinx
|
||||||
|
extensions.extend(['sphinx.ext.autodoc', 'sphinx.ext.intersphinx'])
|
||||||
|
|
||||||
|
# Autodoc settings
|
||||||
|
autodoc_default_flags = ['members', 'special-members']
|
||||||
|
|
Loading…
Reference in New Issue