1515import os
1616import sys
1717
18+ import sphinx_autosummary_accessors
19+
1820import xbatcher
1921
2022# If extensions (or modules to document with autodoc) are in another directory,
4749 'nbsphinx' ,
4850 'IPython.sphinxext.ipython_directive' ,
4951 'IPython.sphinxext.ipython_console_highlighting' ,
52+ 'sphinx_autosummary_accessors' ,
5053]
5154
5255# never execute notebooks: avoids lots of expensive imports on rtd
@@ -66,14 +69,16 @@ def setup(app):
6669
6770
6871# link to github issues
69- extlinks = {'issue' : ('https://github.com/xbatcher/xbatcher/issues/%s' , 'GH' )}
72+ extlinks = {
73+ 'issue' : ('https://github.com/pangeo-data/xbatcher/issues/%s' , 'GH' )
74+ }
7075
7176autosummary_generate = True
7277numpydoc_class_members_toctree = False
7378numpydoc_show_class_members = False
7479
7580# Add any paths that contain templates here, relative to this directory.
76- templates_path = ['_templates' ]
81+ templates_path = ['_templates' , sphinx_autosummary_accessors . templates_path ]
7782
7883# The suffix of source filenames.
7984source_suffix = '.rst'
@@ -86,7 +91,7 @@ def setup(app):
8691
8792# General information about the project.
8893project = u'xbatcher'
89- copyright = u'2016 , xbatcher developers'
94+ copyright = u'2021 , xbatcher developers'
9095
9196# The version info for the project you're documenting, acts as replacement for
9297# |version| and |release|, also used in various other places throughout the
0 commit comments