Skip to content

Commit

Permalink
generate members details
Browse files Browse the repository at this point in the history
  • Loading branch information
undertherain committed Dec 6, 2018
1 parent 5c820f0 commit 7ab57a5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
15 changes: 14 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,20 @@
'sphinx.ext.viewcode',
]

autosummary_generate = True
autosummary_generate = True # Make _autosummary files and include them
autoclass_content = "both"
autodoc_default_flags = [
# Make sure that any autodoc declarations show the right members
"members",
"inherited-members",
"private-members",
"show-inheritance",
]
napoleon_numpy_docstring = False # Force consistency, leave only Google
napoleon_use_rtype = False # More legible


numpydoc_show_class_members = False

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
Expand Down
1 change: 1 addition & 0 deletions vecto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
:toctree: _autosummary
embeddings
corpus
vocabulary
benchmarks
"""
Expand Down

0 comments on commit 7ab57a5

Please sign in to comment.