mirror of
https://github.com/zkonduit/ezkl.git
synced 2026-04-25 03:01:17 -04:00
--------- Co-authored-by: dante <45801863+alexander-camuto@users.noreply.github.com> Co-authored-by: Ethan Cemer <tylercemer@gmail.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
29 lines
669 B
Python
29 lines
669 B
Python
import ezkl
|
|
|
|
project = 'ezkl'
|
|
release = '0.0.0'
|
|
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'] |