2023-01-29 22:28:27 +08: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
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
sys.path.insert(0, os.path.abspath('../../src/'))
|
2023-04-23 18:35:03 +08:00
|
|
|
import accounting
|
2023-01-29 22:28:27 +08:00
|
|
|
|
|
|
|
# -- Project information -----------------------------------------------------
|
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
|
|
|
|
2023-04-04 18:17:44 +08:00
|
|
|
project = 'Mia! Accounting'
|
2023-01-29 22:28:27 +08:00
|
|
|
copyright = '2023, imacat'
|
|
|
|
author = 'imacat'
|
2023-04-23 18:35:03 +08:00
|
|
|
release = accounting.VERSION
|
2023-01-29 22:28:27 +08: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
|
|
|
|
|
2023-03-01 01:48:56 +08:00
|
|
|
html_theme = 'sphinx_rtd_theme'
|
2023-01-29 22:28:27 +08:00
|
|
|
html_static_path = ['_static']
|