tfscript/docs/source/conf.py

33 lines
969 B
Python
Raw Normal View History

2022-08-09 18:48:18 -04:00
# 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
2022-08-09 19:55:04 -04:00
import alabaster
html_theme_path = [alabaster.get_path()]
html_theme = 'alabaster'
2022-08-09 18:48:18 -04:00
project = 'TFScript'
copyright = '2022, Nicholas Hope and Paco Hope'
author = 'Nicholas Hope and Paco Hope'
release = '1.0'
extensions = [
'sphinx.ext.duration',
'sphinx.ext.doctest',
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
2022-08-09 19:55:04 -04:00
'sphinxarg.ext',
'alabaster' ]
2022-08-09 18:48:18 -04:00
templates_path = ['_templates']
exclude_patterns = []
html_static_path = ['_static']
2022-08-09 19:55:04 -04:00
html_theme_options = {
'description' : "Managing and simplifying TF2 scripts.",
'fixed_sidebar' : True,
'show_powered_by' : False,
2022-08-10 17:14:54 -04:00
'logo' : 'tfscript-logo.png',
2022-08-09 19:55:04 -04:00
}
2022-08-09 18:48:18 -04:00
import os
import sys
sys.path.append(os.path.abspath('../../src'))