1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
import hmmlearn
needs_sphinx = '2.0'
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
'sphinx.ext.intersphinx',
'sphinx.ext.napoleon',
'sphinx_gallery.gen_gallery',
]
project = 'hmmlearn'
copyright = '2010-present, hmmlearn developers (BSD License)'
version = release = hmmlearn.__version__
default_role = 'py:obj'
pygments_style = 'sphinx'
language = 'en'
# -- Options for extensions --------------------------------------------------
autodoc_default_options = {
'members': None,
'inherited-members': None,
'special-members': '__init__',
}
intersphinx_mapping = {
'sklearn': ('https://scikit-learn.org/stable/', None),
}
napoleon_use_ivar = True
napoleon_use_rtype = False
sphinx_gallery_conf = {
'examples_dirs': '../../examples',
'gallery_dirs': 'auto_examples'
}
# -- Options for HTML output -------------------------------------------------
html_theme = 'pydata_sphinx_theme'
html_theme_options = {
'github_url': 'https://github.com/hmmlearn/hmmlearn',
}
html_css_files = ['hide_some_gallery_elements.css']
html_static_path = ['_static']
htmlhelp_basename = 'hmmlearn_doc'
# -- Options for LaTeX output ------------------------------------------------
latex_documents = [('index', 'user_guide.tex', 'hmmlearn user guide',
'hmmlearn developers', 'manual'), ]
|