|
7 | 7 | import sys |
8 | 8 |
|
9 | 9 | # Add the src directory to the path so we can import the package |
10 | | -sys.path.insert(0, os.path.abspath('../src')) |
| 10 | +sys.path.insert(0, os.path.abspath("../src")) |
11 | 11 |
|
12 | 12 | # -- Project information ----------------------------------------------------- |
13 | 13 | # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information |
14 | 14 |
|
15 | | -project = 'Runloop Python SDK' |
16 | | -copyright = '2025, Runloop' |
17 | | -author = 'Runloop' |
18 | | -release = '0.68.0' |
| 15 | +project = "Runloop Python SDK" |
| 16 | +copyright = "2025, Runloop" |
| 17 | +author = "Runloop" |
| 18 | +release = "0.68.0" |
19 | 19 |
|
20 | 20 | # -- General configuration --------------------------------------------------- |
21 | 21 | # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration |
22 | 22 |
|
23 | 23 | extensions = [ |
24 | | - 'sphinx.ext.autodoc', |
25 | | - 'sphinx.ext.napoleon', |
26 | | - 'sphinx.ext.intersphinx', |
27 | | - 'sphinx.ext.viewcode', |
28 | | - 'sphinx_toolbox.more_autodoc.autotypeddict', |
29 | | - 'sphinx_autodoc_typehints', |
| 24 | + "sphinx.ext.autodoc", |
| 25 | + "sphinx.ext.napoleon", |
| 26 | + "sphinx.ext.intersphinx", |
| 27 | + "sphinx.ext.viewcode", |
| 28 | + "sphinx_toolbox.more_autodoc.autotypeddict", |
| 29 | + "sphinx_autodoc_typehints", |
30 | 30 | ] |
31 | 31 |
|
32 | | -templates_path = ['_templates'] |
33 | | -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 32 | +templates_path = ["_templates"] |
| 33 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
34 | 34 |
|
35 | 35 | # -- Options for HTML output ------------------------------------------------- |
36 | 36 | # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output |
37 | 37 |
|
38 | | -html_theme = 'furo' |
39 | | -html_static_path = ['_static'] |
| 38 | +html_theme = "furo" |
| 39 | +html_static_path = ["_static"] |
40 | 40 |
|
41 | 41 | # -- Extension configuration ------------------------------------------------- |
42 | 42 |
|
|
49 | 49 |
|
50 | 50 | # Autodoc settings |
51 | 51 | autodoc_default_options = { |
52 | | - 'members': None, |
53 | | - 'undoc-members': None, |
54 | | - 'show-inheritance': None, |
| 52 | + "members": None, |
| 53 | + "undoc-members": None, |
| 54 | + "show-inheritance": None, |
55 | 55 | } |
56 | 56 |
|
57 | | -autodoc_typehints = 'description' |
58 | | -autodoc_typehints_description_target = 'documented' |
| 57 | +autodoc_typehints = "description" |
| 58 | +autodoc_typehints_description_target = "documented" |
59 | 59 |
|
60 | 60 | # Intersphinx mapping |
61 | 61 | intersphinx_mapping = { |
62 | | - 'python': ('https://docs.python.org/3', None), |
63 | | - 'httpx': ('https://www.python-httpx.org', None), |
| 62 | + "python": ("https://docs.python.org/3", None), |
| 63 | + "httpx": ("https://www.python-httpx.org", None), |
64 | 64 | } |
65 | | - |
0 commit comments