|
21 | 21 |
|
22 | 22 | # -- General configuration ------------------------------------------------ |
23 | 23 |
|
24 | | - |
25 | 24 | nitpicky = True # Warn about broken links. This is here for a reason: Do not change. |
26 | 25 | needs_sphinx = "4.0" # Nicer param docs |
27 | 26 | suppress_warnings = [ |
|
42 | 41 |
|
43 | 42 | release = version |
44 | 43 |
|
| 44 | +# Bibliography settings |
| 45 | +bibtex_bibfiles = ["references.bib"] |
| 46 | +bibtex_reference_style = "author_year" |
| 47 | + |
| 48 | + |
45 | 49 | # default settings |
46 | 50 | templates_path = ["_templates"] |
47 | 51 | master_doc = "index" |
|
59 | 63 | "sphinx.ext.napoleon", |
60 | 64 | "sphinx.ext.autosummary", |
61 | 65 | "sphinx.ext.extlinks", |
| 66 | + "sphinxcontrib.bibtex", |
62 | 67 | "matplotlib.sphinxext.plot_directive", |
63 | 68 | "sphinx_autodoc_typehints", # needs to be after napoleon |
64 | 69 | "git_ref", # needs to be before scanpydoc.rtd_github_links |
|
90 | 95 | "html_image", |
91 | 96 | "html_admonition", |
92 | 97 | ] |
93 | | -myst_url_schemes = ("http", "https", "mailto") |
| 98 | +myst_url_schemes = ("http", "https", "mailto", "ftp") |
94 | 99 | nb_output_stderr = "remove" |
95 | 100 | nb_execution_mode = "off" |
96 | 101 | nb_merge_streams = True |
|
127 | 132 | scipy=("https://docs.scipy.org/doc/scipy/", None), |
128 | 133 | seaborn=("https://seaborn.pydata.org/", None), |
129 | 134 | sklearn=("https://scikit-learn.org/stable/", None), |
130 | | - tutorials=("https://scanpy-tutorials.readthedocs.io/en/latest/", None), |
131 | 135 | ) |
132 | 136 |
|
133 | 137 |
|
|
0 commit comments