|
15 | 15 | # Insert the path to sys.path |
16 | 16 | sys.path.insert(0, str(module_path.resolve())) |
17 | 17 |
|
18 | | -project = 'InferenceSDK' |
19 | | -copyright = '2024, Intel OpenVINO' |
20 | | -author = 'Intel OpenVINO' |
21 | | -release = '2024' |
| 18 | +project = "InferenceSDK" |
| 19 | +copyright = "2024, Intel OpenVINO" |
| 20 | +author = "Intel OpenVINO" |
| 21 | +release = "2024" |
22 | 22 |
|
23 | 23 | # -- General configuration --------------------------------------------------- |
24 | 24 | # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration |
|
33 | 33 | "sphinx.ext.napoleon", |
34 | 34 | "sphinx_autodoc_typehints", |
35 | 35 | "sphinx_copybutton", |
36 | | - "sphinx.ext.graphviz" |
| 36 | + "sphinx.ext.graphviz", |
37 | 37 | ] |
38 | 38 |
|
39 | 39 | myst_enable_extensions = [ |
40 | 40 | "colon_fence", |
41 | 41 | # other MyST extensions... |
42 | 42 | ] |
43 | 43 |
|
44 | | -templates_path = ['_templates'] |
| 44 | +templates_path = ["_templates"] |
45 | 45 | exclude_patterns = [] |
46 | 46 |
|
47 | 47 | # Automatic exclusion of prompts from the copies |
|
52 | 52 | # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output |
53 | 53 |
|
54 | 54 | html_theme = "pydata_sphinx_theme" |
55 | | -html_static_path = ['_static'] |
| 55 | +html_static_path = ["_static"] |
56 | 56 |
|
57 | | -breathe_projects = {"InferenceSDK": Path(__file__).parent.parent/"build_cpp"/ "xml"} |
| 57 | +breathe_projects = {"InferenceSDK": Path(__file__).parent.parent / "build_cpp" / "xml"} |
58 | 58 | breathe_default_project = "InferenceSDK" |
59 | | -breathe_default_members = ('members', 'undoc-members', 'private-members') |
| 59 | +breathe_default_members = ("members", "undoc-members", "private-members") |
60 | 60 |
|
61 | 61 | autodoc_docstring_signature = True |
62 | 62 | autodoc_member_order = "bysource" |
|
0 commit comments