mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-03-16 22:20:30 +00:00
34 lines
1.1 KiB
Python
34 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
|
||
|
|
|
||
|
|
# -- Project information -----------------------------------------------------
|
||
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
||
|
|
|
||
|
|
project = "django-avatar"
|
||
|
|
copyright = "2013, django-avatar developers"
|
||
|
|
author = "keyvan"
|
||
|
|
|
||
|
|
# -- General configuration ---------------------------------------------------
|
||
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
||
|
|
|
||
|
|
extensions = []
|
||
|
|
|
||
|
|
templates_path = ["_templates"]
|
||
|
|
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
||
|
|
|
||
|
|
htmlhelp_basename = "django-avatar apidoc"
|
||
|
|
|
||
|
|
source_suffix = ".rst"
|
||
|
|
|
||
|
|
master_doc = "index"
|
||
|
|
pygments_style = "sphinx"
|
||
|
|
|
||
|
|
# -- Options for HTML output -------------------------------------------------
|
||
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
||
|
|
|
||
|
|
html_theme = "sphinx_rtd_theme"
|
||
|
|
html_static_path = ["_static"]
|
||
|
|
epub_show_urls = "footnote"
|