import sys, os
sys.path.insert(0, os.path.abspath('..'))
import wingfoil
sys.modules['wingfoil.wingfoil'] = wingfoil
copyright = '2025, Jake Mitchell'
author = 'Jake Mitchell'
release = '4.0.1'
extensions = [
'sphinx.ext.autodoc', 'sphinx.ext.autosummary', 'sphinx.ext.napoleon', 'myst_parser', ]
templates_path = ['_templates']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
autodoc_default_options = {
"members": True,
"undoc-members": True,
"show-inheritance": True,
}
autosummary_generate = True
add_module_names = False
html_theme = 'sphinx_rtd_theme' html_static_path = ['_static']