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
|
"""rm -rf doc/_generated/; python setup.py build_sphinx -E -a
"""
from typing import List
project = "ewoksutils"
release = "0.1"
copyright = "2021, ESRF"
author = "ESRF"
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
"sphinx.ext.viewcode",
"sphinx_autodoc_typehints",
]
templates_path = ["_templates"]
exclude_patterns: List[str] = []
always_document_param_types = True
html_theme = "classic"
html_static_path: List[str] = []
autosummary_generate = True
autodoc_default_flags = [
"members",
"undoc-members",
"show-inheritance",
]
|