mirror of
https://github.com/b4tman/sync_ics2gcal
synced 2025-01-21 07:28:24 +00:00
41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
# 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
|
|
|
|
import importlib
|
|
from typing import List
|
|
|
|
|
|
project = "sync_ics2gcal"
|
|
copyright = "2023, b4tman"
|
|
author = "b4tman"
|
|
version = importlib.metadata.version("sync_ics2gcal")
|
|
release = version
|
|
|
|
# -- General configuration ---------------------------------------------------
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
|
|
|
extensions = [
|
|
"myst_parser",
|
|
"sphinx.ext.autodoc",
|
|
"sphinx_design",
|
|
"sphinx.ext.viewcode",
|
|
"sphinx_copybutton",
|
|
"sphinx.ext.githubpages",
|
|
]
|
|
|
|
templates_path = ["_templates"]
|
|
exclude_patterns: List[str] = []
|
|
|
|
source_suffix = [".rst", ".md"]
|
|
|
|
# -- Options for HTML output -------------------------------------------------
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
|
|
|
html_theme = "sphinx_rtd_theme"
|
|
html_static_path = ["_static"]
|