1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# Configuration file for the Sphinx documentation builder.
# -- Project information ----------------------------------------------------
import datetime
import os
from sasdata import __version__ as sasdata_version
if os.path.exists('rst_prolog'):
with open('rst_prolog') as fid:
rst_prolog = fid.read()
# General information about the project.
year = datetime.datetime.now().year
project = 'SasData'
copyright = f'{year}, The SasView Project'
author = 'SasView'
release = sasdata_version
# -- General configuration ---------------------------------------------------
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
]
templates_path = ['_templates']
exclude_patterns = []
# -- Options for HTML output -------------------------------------------------
html_theme = 'default'
html_static_path = ['_static']
|