forked from Advanced_Python/advanced-python-homework-2023
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
|
# 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
|
||
|
|
||
|
import sys
|
||
|
import os
|
||
|
sys.path.insert(0, os.path.abspath("../../"))
|
||
|
|
||
|
# -- Project information -----------------------------------------------------
|
||
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
||
|
|
||
|
project = 'Advanced python homework'
|
||
|
copyright = '2023, Ilia'
|
||
|
author = 'Ilia'
|
||
|
|
||
|
# -- General configuration ---------------------------------------------------
|
||
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
||
|
|
||
|
extensions = [
|
||
|
'sphinx.ext.duration',
|
||
|
'sphinx.ext.doctest',
|
||
|
'sphinx.ext.autodoc',
|
||
|
'sphinx.ext.autosummary',
|
||
|
]
|
||
|
|
||
|
templates_path = ['_templates']
|
||
|
exclude_patterns = []
|
||
|
|
||
|
|
||
|
|
||
|
# -- Options for HTML output -------------------------------------------------
|
||
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
||
|
|
||
|
html_theme = 'alabaster'
|
||
|
html_static_path = ['_static']
|