flask-digestauth/docs/source/conf.py

33 lines
1.0 KiB
Python
Raw Normal View History

2022-12-06 17:38:14 +08:00
# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
2022-12-06 17:38:14 +08:00
# https://www.sphinx-doc.org/en/master/usage/configuration.html
import os
import sys
sys.path.insert(0, os.path.abspath('../../src/'))
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
2022-12-06 17:38:14 +08:00
project = 'Flask-Digest-Auth'
copyright = '2022, imacat'
author = 'imacat'
2022-12-06 23:59:29 +08:00
release = '0.3.0'
2022-12-06 17:38:14 +08:00
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
2022-12-06 17:38:14 +08:00
extensions = ["sphinx.ext.autodoc"]
2022-12-06 17:38:14 +08:00
templates_path = ['_templates']
exclude_patterns = []
2022-12-06 17:38:14 +08:00
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
2022-12-06 17:38:14 +08:00
html_theme = 'sphinx_rtd_theme'
html_static_path = ['_static']