keep-it-secret/docs/source/conf.py

38 lines
1.2 KiB
Python
Raw Normal View History

2024-01-04 19:30:54 +00:00
# -*- coding: utf-8 -*-
# type: ignore
# 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
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = 'Keep It Secret'
copyright = '2023-present Tomek Wójcik'
author = 'Tomek Wójcik'
2024-01-18 20:28:55 +00:00
version = '1.1.0'
2024-01-04 19:30:54 +00:00
# The full version, including alpha/beta/rc tags
2024-01-18 20:28:55 +00:00
release = '1.1.0'
2024-01-04 19:30:54 +00:00
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [
'sphinx.ext.autodoc',
]
templates_path = ['_templates']
exclude_patterns = []
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
2024-01-18 20:28:55 +00:00
html_theme = 'furo'
2024-01-04 19:30:54 +00:00
html_static_path = ['_static']
2024-01-18 20:28:55 +00:00
# -- Options for autodoc -----------------------------------------------------
autodoc_member_order = 'bysource'