mirror of
https://github.com/zkonduit/ezkl.git
synced 2026-04-25 03:01:17 -04:00
29 lines
670 B
Python
29 lines
670 B
Python
import ezkl
|
|
|
|
project = 'ezkl'
|
|
release = '18.1.8'
|
|
version = release
|
|
|
|
|
|
extensions = [
|
|
'sphinx.ext.autodoc',
|
|
'sphinx.ext.autosummary',
|
|
'sphinx.ext.intersphinx',
|
|
'sphinx.ext.todo',
|
|
'sphinx.ext.inheritance_diagram',
|
|
'sphinx.ext.autosectionlabel',
|
|
'sphinx.ext.napoleon',
|
|
'sphinx_rtd_theme',
|
|
]
|
|
|
|
autosummary_generate = True
|
|
autosummary_imported_members = True
|
|
|
|
templates_path = ['_templates']
|
|
exclude_patterns = []
|
|
|
|
# -- Options for HTML output -------------------------------------------------
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
|
|
|
html_theme = 'sphinx_rtd_theme'
|
|
html_static_path = ['_static'] |