|
11 | 11 | sys.path.insert(0, str(HERE.parent)) |
12 | 12 | import scallops # noqa |
13 | 13 |
|
14 | | - |
15 | 14 | project = "scallops" |
16 | 15 | copyright = "2026, Genentech" |
17 | | -author = "scallops team" |
| 16 | +author = "SCALLOPS team" |
18 | 17 |
|
19 | 18 | # -- General configuration --------------------------------------------------- |
20 | 19 | # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration |
21 | 20 | extensions = [ |
22 | | - "myst_parser", # allow md files |
23 | 21 | "nbsphinx", |
24 | 22 | "sphinx.ext.autodoc", |
25 | 23 | "sphinx.ext.autosummary", |
|
35 | 33 | suppress_warnings = [ |
36 | 34 | "nbsphinx", |
37 | 35 | ] |
38 | | -autodoc_default_options = {"members": True, "member-order": "bysource"} |
| 36 | +autodoc_default_options = {"members": True} |
39 | 37 | autodoc_typehints = "description" |
40 | 38 | autosummary_generate = True |
41 | 39 | todo_include_todos = False |
42 | 40 | templates_path = ["_templates"] |
43 | 41 | exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
44 | 42 |
|
45 | | -# intersphinx_mapping = dict( |
46 | | -# matplotlib=("https://matplotlib.org/stable/", None), |
47 | | -# numpy=("https://numpy.org/doc/stable/", None), |
48 | | -# pandas=("https://pandas.pydata.org/pandas-docs/stable/", None), |
49 | | -# pytest=("https://docs.pytest.org/en/latest/", None), |
50 | | -# python=("https://docs.python.org/3", None), |
51 | | -# scipy=("https://docs.scipy.org/doc/scipy/", None), |
52 | | -# seaborn=("https://seaborn.pydata.org/", None), |
53 | | -# skimage=("https://scikit-image.org/docs/stable/api/", None), |
54 | | -# sklearn=("https://scikit-learn.org/dev/", None), |
55 | | -# xarray=("https://docs.xarray.dev/", None), |
56 | | -# ) |
| 43 | +intersphinx_mapping = dict( |
| 44 | + matplotlib=("https://matplotlib.org/stable/", None), |
| 45 | + numpy=("https://numpy.org/doc/stable/", None), |
| 46 | + pandas=("https://pandas.pydata.org/pandas-docs/stable/", None), |
| 47 | + pytest=("https://docs.pytest.org/en/latest/", None), |
| 48 | + python=("https://docs.python.org/3", None), |
| 49 | + scipy=("https://docs.scipy.org/doc/scipy/", None), |
| 50 | + seaborn=("https://seaborn.pydata.org/", None), |
| 51 | + skimage=("https://scikit-image.org/docs/stable/api/", None), |
| 52 | + sklearn=("https://scikit-learn.org/dev/", None), |
| 53 | + xarray=("https://docs.xarray.dev/", None), |
| 54 | +) |
57 | 55 | intersphinx_disabled_reftypes = ["*"] |
58 | 56 | # -- Options for HTML output ------------------------------------------------- |
59 | 57 | # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output |
60 | 58 |
|
61 | 59 | html_theme = "sphinx_rtd_theme" |
62 | 60 | html_static_path = ["_static"] |
| 61 | + |
| 62 | + |
63 | 63 | # Add custom CSS files |
64 | | -html_css_files = [ |
65 | | - "css/custom.css", |
66 | | -] |
| 64 | +# html_css_files = [ |
| 65 | +# "css/custom.css", |
| 66 | +# ] |
67 | 67 |
|
68 | 68 |
|
69 | 69 | def skip_private_members(app, what, name, obj, skip, options): |
|
0 commit comments