| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| """Configuration for generating readthedocs docstrings.""" |
| from __future__ import absolute_import |
|
|
| import pkg_resources |
| from datetime import datetime |
| import sys |
| import os |
|
|
| sys.path.append(os.path.join(os.path.dirname(__file__), ".")) |
| from doc_utils.jumpstart_doc_utils import create_jumpstart_model_table |
|
|
| project = "sagemaker" |
| version = pkg_resources.require(project)[0].version |
|
|
| |
| |
| extensions = [ |
| "sphinx.ext.autodoc", |
| "sphinx.ext.doctest", |
| "sphinx.ext.intersphinx", |
| "sphinx.ext.todo", |
| "sphinx.ext.coverage", |
| "sphinx.ext.autosummary", |
| "sphinx.ext.napoleon", |
| "sphinx.ext.autosectionlabel", |
| ] |
|
|
| |
| templates_path = ["_templates"] |
|
|
| source_suffix = ".rst" |
| master_doc = "index" |
|
|
| copyright = "%s, Amazon" % datetime.now().year |
|
|
| |
| release = version |
|
|
| |
| |
| exclude_trees = ["_build"] |
|
|
| pygments_style = "default" |
|
|
| autoclass_content = "both" |
| autodoc_default_flags = ["show-inheritance", "members", "undoc-members"] |
| autodoc_member_order = "bysource" |
|
|
| html_theme = "sphinx_rtd_theme" |
|
|
| html_theme_options = { |
| "collapse_navigation": True, |
| "sticky_navigation": True, |
| "navigation_depth": 6, |
| "includehidden": True, |
| "titles_only": False, |
| } |
|
|
|
|
| html_static_path = ["_static"] |
|
|
| htmlhelp_basename = "%sdoc" % project |
|
|
| |
| html_js_files = [ |
| "https://a0.awsstatic.com/s_code/js/3.0/awshome_s_code.js", |
| "https://cdn.datatables.net/1.10.23/js/jquery.dataTables.min.js", |
| "https://kit.fontawesome.com/a076d05399.js", |
| "js/datatable.js", |
| ] |
|
|
| html_css_files = [ |
| "https://cdn.datatables.net/1.10.23/css/jquery.dataTables.min.css", |
| ] |
|
|
| html_context = { |
| "css_files": [ |
| "_static/theme_overrides.css", |
| "_static/pagination.css", |
| "_static/search_accessories.css", |
| ] |
| } |
|
|
| |
| intersphinx_mapping = {"http://docs.python.org/": None} |
|
|
| |
| |
|
|
| |
| |
| autodoc_typehints = "description" |
|
|
| |
| autosummary_generate = True |
|
|
| |
| autosectionlabel_prefix_document = True |
|
|
|
|
| def setup(app): |
| sys.stdout.write("Generating JumpStart model table...") |
| sys.stdout.flush() |
| create_jumpstart_model_table() |
|
|