23 lines
422 B
Python
23 lines
422 B
Python
import os
|
|
import sys
|
|
|
|
sys.path.insert(0, os.path.abspath('..'))
|
|
|
|
project = 'retro-gamer'
|
|
copyright = '2025, Chris Proctor'
|
|
author = 'Chris Proctor'
|
|
release = '0.1.0'
|
|
|
|
extensions = [
|
|
'sphinx.ext.autodoc',
|
|
]
|
|
|
|
autodoc_member_order = 'bysource'
|
|
|
|
templates_path = ['_templates']
|
|
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|
|
|
html_theme = 'sphinx_rtd_theme'
|
|
html_static_path = ['_static']
|
|
html_theme_options = {}
|