|
17 | 17 |
|
18 | 18 | # -- Project information -----------------------------------------------------
|
19 | 19 |
|
20 |
| -project = 'python-package-guide' |
21 |
| -copyright = '2023, pyOpenSci' |
22 |
| -author = 'pyOpenSci Community' |
| 20 | +project = "python-package-guide" |
| 21 | +copyright = "2023, pyOpenSci" |
| 22 | +author = "pyOpenSci Community" |
23 | 23 |
|
24 | 24 | # The full version, including alpha/beta/rc tags
|
25 |
| -release = '0.1' |
| 25 | +release = "0.1" |
26 | 26 |
|
27 | 27 | # -- General configuration ---------------------------------------------------
|
28 | 28 |
|
|
47 | 47 | myst_heading_anchors = 3
|
48 | 48 |
|
49 | 49 | # For generating sitemap
|
50 |
| -html_baseurl = 'https://www.pyopensci.org/software-peer-review/' |
| 50 | +html_baseurl = "https://www.pyopensci.org/software-peer-review/" |
51 | 51 |
|
52 | 52 | # Link to our repo for easy PR/ editing
|
53 | 53 | html_theme_options = {
|
|
81 | 81 | "header_links_before_dropdown": 4,
|
82 | 82 | "use_edit_page_button": True,
|
83 | 83 | "show_toc_level": 1,
|
84 |
| - #"navbar_align": "left", # [left, content, right] For testing that the navbar items align properly |
| 84 | + # "navbar_align": "left", # [left, content, right] For testing that the navbar items align properly |
85 | 85 | "github_url": "https://github.com/pyopensci/python-package-guide",
|
86 | 86 | "twitter_url": "https://twitter.com/pyopensci",
|
87 | 87 | "footer_items": ["copyright"],
|
|
99 | 99 |
|
100 | 100 | # Add analytics to furo theme
|
101 | 101 | gtagjs_ids = [
|
102 |
| - 'UA-141260825-1', |
| 102 | + "UA-141260825-1", |
103 | 103 | ]
|
104 | 104 |
|
105 | 105 | # Add any paths that contain templates here, relative to this directory.
|
106 |
| -templates_path = ['_templates'] |
| 106 | +templates_path = ["_templates"] |
107 | 107 |
|
108 | 108 | # List of patterns, relative to source directory, that match files and
|
109 | 109 | # directories to ignore when looking for source files.
|
|
114 | 114 | ".DS_Store",
|
115 | 115 | ".github",
|
116 | 116 | ".nox",
|
117 |
| - "README.md" |
118 |
| - ] |
| 117 | + "README.md", |
| 118 | +] |
119 | 119 |
|
120 | 120 | # For sitemap
|
121 |
| -html_baseurl = 'https://www.pyopensci.org/package-review-guide/' |
| 121 | +html_baseurl = "https://www.pyopensci.org/package-review-guide/" |
122 | 122 |
|
123 | 123 | # -- Options for HTML output -------------------------------------------------
|
124 | 124 |
|
125 | 125 | # The theme to use for HTML and HTML Help pages. See the documentation for
|
126 | 126 | # a list of builtin themes.
|
127 | 127 | #
|
128 |
| -html_theme = 'pydata_sphinx_theme' |
| 128 | +html_theme = "pydata_sphinx_theme" |
129 | 129 | html_static_path = ["_static"]
|
130 | 130 | html_css_files = ["pyos.css"]
|
| 131 | +html_title = "pyOpenSci Python Packaging Guide" |
131 | 132 | html_js_files = ["matomo.js"]
|
132 |
| -html_title = "pyOpenSci Package Guide" |
133 | 133 | html_logo = "images/logo/logo.png"
|
0 commit comments