forked from fox-it/dissect.cstruct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
42 lines (35 loc) · 960 Bytes
/
conf.py
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
project = "dissect.cstruct"
extensions = [
"autoapi.extension",
"sphinx.ext.autodoc",
"sphinx.ext.autosectionlabel",
"sphinx.ext.doctest",
"sphinx.ext.napoleon",
"sphinx_argparse_cli",
]
exclude_patterns = []
html_theme = "furo"
autoapi_type = "python"
autoapi_dirs = ["../../dissect/"]
autoapi_ignore = ["*tests*", "*.tox*", "*venv*", "*examples*"]
autoapi_python_use_implicit_namespaces = True
autoapi_add_toctree_entry = False
autoapi_root = "api"
autoapi_options = [
"members",
"undoc-members",
"show-inheritance",
"show-module-summary",
"special-members",
"imported-members",
]
autoapi_keep_files = True
autoapi_template_dir = "_templates/autoapi"
autodoc_typehints = "signature"
autodoc_member_order = "groupwise"
autosectionlabel_prefix_document = True
suppress_warnings = [
# https://github.com/readthedocs/sphinx-autoapi/issues/285
"autoapi.python_import_resolution",
"ref.python",
]