-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.py
More file actions
47 lines (39 loc) · 1.54 KB
/
Copy pathconf.py
File metadata and controls
47 lines (39 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Sphinx configuration for the PyAutoScientist docs, published on
# ReadTheDocs as the `pyautoscientist` project from PyAutoBrain/docs/.
# The docs describe the whole organism; Brain hosts them because it owns
# the canonical organism prose (ORGANISM.md) and the growth rule says no
# new organs by default.
project = "PyAutoScientist"
author = "James Nightingale"
copyright = "2026, James Nightingale"
extensions = ["myst_parser"]
myst_enable_extensions = ["colon_fence"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
html_theme = "furo"
html_title = "PyAutoScientist"
html_short_title = "PyAutoScientist"
html_permalinks_icon = "<span>#</span>"
html_last_updated_fmt = "%b %d, %Y"
html_show_sourcelink = False
html_show_sphinx = True
html_show_copyright = True
language = "en"
html_static_path = ["_static"]
html_css_files = ["pyauto.css"]
html_theme_options = {
"announcement": (
"⚠️ The PyAutoScientist docs are at a <strong>very early stage</strong> "
"of writing — obviously entirely AI-generated, and will be improved upon "
"significantly moving forward. Even so, they should already be good enough "
"to get the idea behind PyAutoScientist, and the AI-development workflow it "
"enables is now thoroughly tested, with months of development behind it."
),
"light_css_variables": {
"color-brand-primary": "#be123c",
"color-brand-content": "#be123c",
},
"dark_css_variables": {
"color-brand-primary": "#fb7185",
"color-brand-content": "#fb7185",
},
}