[f8624c]: / docs / conf.py

Download this file

16 lines (13 with data), 330 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
"""Sphinx configuration."""
from datetime import datetime
project = "ai_genomics"
author = "Nesta"
copyright = f"{datetime.now().year}, {author}"
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.napoleon",
# "sphinx_click",
"sphinx_rtd_theme",
]
autodoc_typehints = "description"
html_theme = "sphinx_rtd_theme"