|
21 | 21 | info = metadata("decoupler") |
22 | 22 | project_name = info["Name"] |
23 | 23 | author = info["Author"] |
24 | | -copyright = f"{datetime.now():%Y}, {author}." |
| 24 | +copyright = f"{datetime.now():%Y}, scverse." |
25 | 25 | version = info["Version"] |
26 | 26 | urls = dict(pu.split(", ") for pu in info.get_all("Project-URL")) |
27 | 27 | repository_url = urls["Source"] |
|
36 | 36 |
|
37 | 37 | html_context = { |
38 | 38 | "display_github": True, # Integrate GitHub |
39 | | - "github_user": "PauBadiaM", |
| 39 | + "github_user": "scverse", |
40 | 40 | "github_repo": project_name, |
41 | 41 | "github_version": "main", |
42 | 42 | "conf_py_path": "/docs/", |
|
96 | 96 | "anndata": ("https://anndata.readthedocs.io/en/stable/", None), |
97 | 97 | "scanpy": ("https://scanpy.readthedocs.io/en/stable/", None), |
98 | 98 | "numpy": ("https://numpy.org/doc/stable/", None), |
| 99 | + "matplotlib": ("https://matplotlib.org/stable/", None), |
| 100 | + "pandas": ("https://pandas.pydata.org/pandas-docs/stable/", None), |
99 | 101 | } |
100 | 102 |
|
101 | 103 | # List of patterns, relative to source directory, that match files and |
|
114 | 116 | html_css_files = ["css/custom.css"] |
115 | 117 |
|
116 | 118 | html_title = project_name |
| 119 | +html_logo = "_static/images/logo.png" |
| 120 | +html_favicon = "_static/images/logo.png" |
117 | 121 |
|
118 | 122 | html_theme_options = { |
119 | 123 | "repository_url": repository_url, |
|
0 commit comments