conf.py 723 Bytes
Newer Older
Ruilong Li's avatar
docs  
Ruilong Li committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Configuration file for the Sphinx documentation builder.

# -- Project information

project = "nerfacc"
copyright = "2022, Ruilong"
author = "Ruilong"

release = "0.1"
version = "0.1.0"

# -- General configuration

extensions = [
Ruilong Li's avatar
fix doc  
Ruilong Li committed
15
    "sphinx.ext.napoleon",
Ruilong Li's avatar
docs  
Ruilong Li committed
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
    "sphinx.ext.duration",
    "sphinx.ext.doctest",
    "sphinx.ext.autodoc",
    "sphinx.ext.autosummary",
    "sphinx.ext.intersphinx",
]

intersphinx_mapping = {
    "python": ("https://docs.python.org/3/", None),
    "sphinx": ("https://www.sphinx-doc.org/en/master/", None),
}
intersphinx_disabled_domains = ["std"]

templates_path = ["_templates"]

# -- Options for HTML output

Matt Tancik's avatar
Matt Tancik committed
33
html_theme = "furo"
Ruilong Li's avatar
docs  
Ruilong Li committed
34
35
36

# -- Options for EPUB output
epub_show_urls = "footnote"