205 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			205 lines
		
	
	
		
			6.6 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
 | 
						|
 | 
						|
# -- Project information -----------------------------------------------------
 | 
						|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
 | 
						|
 | 
						|
project = '胡汉三千年:重新定义中华文明的世界史意义'
 | 
						|
copyright = '2024, 胡汉三千年项目组'
 | 
						|
author = '胡汉三千年项目组'
 | 
						|
release = '1.0.0'
 | 
						|
version = '1.0'
 | 
						|
 | 
						|
# -- General configuration ---------------------------------------------------
 | 
						|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
 | 
						|
 | 
						|
# Add any Sphinx extension module names here, as strings. They can be
 | 
						|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
 | 
						|
# ones.
 | 
						|
extensions = [
 | 
						|
    'sphinx.ext.autodoc',
 | 
						|
    'sphinx.ext.autosummary',
 | 
						|
    'sphinx.ext.doctest',
 | 
						|
    'sphinx.ext.intersphinx',
 | 
						|
    'sphinx.ext.mathjax',
 | 
						|
    'sphinx.ext.napoleon',
 | 
						|
    'sphinx.ext.viewcode',
 | 
						|
    'sphinx.ext.githubpages',
 | 
						|
    'sphinxcontrib.bibtex',
 | 
						|
    'sphinx.ext.todo',
 | 
						|
    'myst_parser',
 | 
						|
    'sphinx_copybutton',
 | 
						|
    'sphinx_design',
 | 
						|
]
 | 
						|
 | 
						|
# Add any paths that contain templates here, relative to this directory.
 | 
						|
templates_path = ['_templates']
 | 
						|
 | 
						|
# List of patterns, relative to source directory, that match files and
 | 
						|
# directories to ignore when looking for source files.
 | 
						|
# This pattern also affects html_static_path and html_extra_path.
 | 
						|
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'venv', 'env']
 | 
						|
 | 
						|
# The suffix(es) of source filenames.
 | 
						|
# You can specify multiple suffix as a list of string:
 | 
						|
source_suffix = {
 | 
						|
    '.rst': None,
 | 
						|
    '.md': 'myst_parser',
 | 
						|
}
 | 
						|
 | 
						|
# The master toctree document.
 | 
						|
master_doc = 'index'
 | 
						|
 | 
						|
# The language for content autogenerated by Sphinx. Refer to documentation
 | 
						|
# for a list of supported languages.
 | 
						|
language = 'zh_CN'
 | 
						|
 | 
						|
# -- Options for HTML output -------------------------------------------------
 | 
						|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
 | 
						|
 | 
						|
# The theme to use for HTML and HTML Help pages.  See the documentation for
 | 
						|
# a list of builtin themes.
 | 
						|
html_theme = 'sphinx_rtd_theme'
 | 
						|
 | 
						|
# Theme options are theme-specific and customize the look and feel of a theme
 | 
						|
# further.  For a list of options available for each theme, see the
 | 
						|
# documentation.
 | 
						|
html_theme_options = {
 | 
						|
    'analytics_id': 'G-XXXXXXXXXX',  # Provided by Google in your dashboard
 | 
						|
    'analytics_anonymize_ip': False,
 | 
						|
    'logo_only': False,
 | 
						|
    'display_version': True,
 | 
						|
    'prev_next_buttons_location': 'bottom',
 | 
						|
    'style_external_links': False,
 | 
						|
    'vcs_pageview_mode': '',
 | 
						|
    'style_nav_header_background': '#2980B9',
 | 
						|
    # Toc options
 | 
						|
    'collapse_navigation': True,
 | 
						|
    'sticky_navigation': True,
 | 
						|
    'navigation_depth': 4,
 | 
						|
    'includehidden': True,
 | 
						|
    'titles_only': False
 | 
						|
}
 | 
						|
 | 
						|
# Add any paths that contain custom static files (such as style sheets) here,
 | 
						|
# relative to this directory. They are copied after the builtin static files,
 | 
						|
# so a file named "default.css" will overwrite the builtin "default.css".
 | 
						|
html_static_path = ['_static']
 | 
						|
 | 
						|
# Custom sidebar templates, must be a dictionary that maps document names
 | 
						|
# to template names.
 | 
						|
html_sidebars = {
 | 
						|
    '**': [
 | 
						|
        'relations.html',  # needs 'show_related': True theme option to display
 | 
						|
        'searchbox.html',
 | 
						|
    ]
 | 
						|
}
 | 
						|
 | 
						|
# -- Options for HTMLHelp output ---------------------------------------------
 | 
						|
 | 
						|
# Output file base name for HTML help builder.
 | 
						|
htmlhelp_basename = 'huhan3000doc'
 | 
						|
 | 
						|
# -- Options for LaTeX output ------------------------------------------------
 | 
						|
 | 
						|
latex_elements = {
 | 
						|
    # The paper size ('letterpaper' or 'a4paper').
 | 
						|
    'papersize': 'a4paper',
 | 
						|
    # The font size ('10pt', '11pt' or '12pt').
 | 
						|
    'pointsize': '12pt',
 | 
						|
    # Additional stuff for the LaTeX preamble.
 | 
						|
    'preamble': '',
 | 
						|
    # Latex figure (float) alignment
 | 
						|
    'figure_align': 'htbp',
 | 
						|
}
 | 
						|
 | 
						|
# Grouping the document tree into LaTeX files. List of tuples
 | 
						|
# (source start file, target name, title,
 | 
						|
#  author, documentclass [howto, manual, or own class]).
 | 
						|
latex_documents = [
 | 
						|
    (master_doc, 'huhan3000.tex', '胡汉三千年项目文档',
 | 
						|
     '胡汉三千年项目组', 'manual'),
 | 
						|
]
 | 
						|
 | 
						|
# -- Options for manual page output ------------------------------------------
 | 
						|
 | 
						|
# One entry per manual page. List of tuples
 | 
						|
# (source start file, name, description, authors, manual section).
 | 
						|
man_pages = [
 | 
						|
    (master_doc, 'huhan3000', '胡汉三千年项目文档',
 | 
						|
     [author], 1)
 | 
						|
]
 | 
						|
 | 
						|
# -- Options for Texinfo output ----------------------------------------------
 | 
						|
 | 
						|
# Grouping the document tree into Texinfo files. List of tuples
 | 
						|
# (source start file, target name, title, author,
 | 
						|
#  dir menu entry, description, category)
 | 
						|
texinfo_documents = [
 | 
						|
    (master_doc, 'huhan3000', '胡汉三千年项目文档',
 | 
						|
     author, 'huhan3000', '重新定义中华文明的世界史意义',
 | 
						|
     'Miscellaneous'),
 | 
						|
]
 | 
						|
 | 
						|
# -- Options for Epub output -------------------------------------------------
 | 
						|
 | 
						|
# Bibliographic Dublin Core info.
 | 
						|
epub_title = project
 | 
						|
epub_author = author
 | 
						|
epub_publisher = author
 | 
						|
epub_copyright = copyright
 | 
						|
 | 
						|
# A list of files that should not be packed into the epub file.
 | 
						|
epub_exclude_files = ['search.html']
 | 
						|
 | 
						|
# -- Extension configuration -------------------------------------------------
 | 
						|
 | 
						|
# -- Options for intersphinx extension ---------------------------------------
 | 
						|
 | 
						|
# Example configuration for intersphinx: refer to the Python standard library.
 | 
						|
intersphinx_mapping = {'https://docs.python.org/': None}
 | 
						|
 | 
						|
# -- Options for todo extension ----------------------------------------------
 | 
						|
 | 
						|
# If true, `todo` and `todoList` produce output, else they produce nothing.
 | 
						|
todo_include_todos = True
 | 
						|
 | 
						|
# -- Options for bibtex extension --------------------------------------------
 | 
						|
 | 
						|
bibtex_bibfiles = ['references.bib']
 | 
						|
 | 
						|
# -- MyST Parser options -----------------------------------------------------
 | 
						|
 | 
						|
myst_enable_extensions = [
 | 
						|
    "colon_fence",
 | 
						|
    "deflist",
 | 
						|
    "dollarmath",
 | 
						|
    "html_admonition",
 | 
						|
    "html_image",
 | 
						|
    "linkify",
 | 
						|
    "replacements",
 | 
						|
    "smartquotes",
 | 
						|
    "substitution",
 | 
						|
]
 | 
						|
 | 
						|
myst_heading_anchors = 3
 | 
						|
 | 
						|
# -- Napoleon settings -------------------------------------------------------
 | 
						|
 | 
						|
napoleon_google_docstring = True
 | 
						|
napoleon_numpy_docstring = True
 | 
						|
napoleon_include_init_with_doc = False
 | 
						|
napoleon_include_private_with_doc = False
 | 
						|
napoleon_include_special_with_doc = True
 | 
						|
napoleon_use_admonition_for_examples = False
 | 
						|
napoleon_use_admonition_for_notes = False
 | 
						|
napoleon_use_admonition_for_references = False
 | 
						|
napoleon_use_ivar = False
 | 
						|
napoleon_use_param = True
 | 
						|
napoleon_use_rtype = True
 | 
						|
napoleon_preprocess_types = False
 | 
						|
napoleon_type_aliases = None
 | 
						|
napoleon_attr_annotations = True
 |