import os
import sys
from datetime import datetime
sys.path.insert(0, os.path.abspath(".."))
project = "PitchLense MCP"
author = "Aman Ulla"
copyright = f"{datetime.now().year}, {author}"
extensions = [
"myst_parser",
"sphinx.ext.autodoc",
"sphinx.ext.napoleon",
"sphinx.ext.viewcode",
]
templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
html_theme = "sphinx_rtd_theme"
html_static_path = ["_static"]
autodoc_default_options = {
"members": True,
"undoc-members": True,
"inherited-members": True,
}
napoleon_google_docstring = True
napoleon_numpy_docstring = True