-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathconf.py
More file actions
98 lines (86 loc) · 3.38 KB
/
conf.py
File metadata and controls
98 lines (86 loc) · 3.38 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = 'RFdiffusion2'
copyright = '2025, Institute for Protein Design, University of Washington'
author = 'Woody Ahern, Jason Yim, Doug Tischer, Saman Salike, Seth M. Woodbury, Donghyo Kim, Indrek Kalvet, Yakov Kipnis, Brian Coventry, Han Raut Altae-Tran, Magnus Bauer, Regina Barzilay, Tommi S. Jaakkola, Rohith Krishna, David Baker'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [
'sphinx.ext.todo',
'sphinx.ext.viewcode',
'sphinx.ext.autodoc',
'sphinx.ext.napoleon',
'sphinx_mdinclude',
#'myst_parser', # to use markdown instead of ReST
'sphinx_copybutton',
#'sphinx_new_tab_link',
]
#myst_enable_extensions = ["colon_fence"] # see https://mystmd.org/guide/syntax-overview for more information
suppress_warnings = [
'app.add_node',
'app.add_directive',
'app.add_role',
'app.add_generic_role',
'app.add_source_parser',
'config.cache',
'download.not_readable',
'epub.unknown_project_files',
'epub.duplicated_toc_entry',
'i18n.inconsistent_references',
'index',
'image.not_readable',
'ref.term',
'ref.ref',
'ref.numref',
'ref.keyword',
'ref.option',
'ref.citation',
'ref.footnote',
'ref.doc',
'ref.python',
'misc.highlighting_failure',
'toc.circular',
'toc.excluded',
'toc.not_readable',
'toc.secnum',
# autodoc,
# autodoc.import_object,
# autosummary,
# intersphinx.external,
]
napoleon_google_docstring = False
napoleon_use_param = False
napoleon_use_ivar = True
templates_path = ['_templates']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'overview.md', 'usage/run_inference_example.md', 'usage/other_pipeline_example.md']
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = 'furo'
html_static_path = ['_static']
html_theme_options = {
"sidebar_hide_name":False,
#"announcement": "<em>THIS DOCUMENTATION IS CURRENTLY UNDER CONSTRUCTION</em>",
"light_css_variables": {
"color-brand-primary": "#F68A33", # Rosetta Teal
"color-brand-content": "#37939B", # Rosetta Orange
"color-admonition-background": "#FB35D6", # Rosetta light orange
"font-stack": "Open Sans, sans-serif",
"font-stack--headings": "Open Sans, sans-serif",
"color-background-hover": "#DCE8E8ff",
"color-announcement-background" : "#F68A33dd",
"color-announcement-text": "#070707",
"color-brand-visited": "#37939B",
},
"dark_css_variables": {
"color-brand-primary": "#37939B", # Rosetta teal
"color-brand-content": "#F68A33", # Rosetta orange
"color-admonition-background": "#FB35D6", # Rosetta light orange
"font-stack": "Open Sans, sans-serif",
"font-stack--headings": "Open Sans, sans-serif",
"color-brand-visited": "#37939B",
}
}