16 lines
371 B
Python
16 lines
371 B
Python
"""Sphinx configuration."""
|
|
from datetime import datetime
|
|
|
|
|
|
project = "Automated Daily Playlist Generator for Plex Music"
|
|
author = "Cliff Hill"
|
|
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"
|