import os import sys sys.path.insert(0, os.path.abspath('../..')) project = 'Quote-Control Simulator' copyright = '2025, PHANTOM Research' author = 'PHANTOM Research' release = '0.1.0' extensions = [ 'sphinx.ext.autodoc', 'sphinx.ext.napoleon', 'sphinx.ext.viewcode', 'sphinx.ext.intersphinx', 'sphinx.ext.autosummary', ] templates_path = ['_templates'] exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] html_theme = 'alabaster' html_static_path = ['_static'] autodoc_default_options = { 'members': True, 'undoc-members': True, 'show-inheritance': True, } napoleon_google_docstring = True napoleon_numpy_docstring = True napoleon_include_init_with_doc = True intersphinx_mapping = { 'python': ('https://docs.python.org/3', None), 'numpy': ('https://numpy.org/doc/stable/', None), } autosummary_generate = True