-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathconf.py
97 lines (71 loc) · 2.74 KB
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# -- General configuration ------------------------------------------------
# Add any Sphinx extension module names here, as strings.
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.intersphinx",
"sphinx.ext.viewcode",
]
# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]
# The suffix(es) of source filenames.
source_suffix = ".rst"
# The master toctree document.
master_doc = "index"
# General information about the project.
project = "django-allauth-2fa"
copyright = "2017, Víðir Valberg Guðmundsson, Percipient Networks"
author = "Víðir Valberg Guðmundsson, Percipient Networks"
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = "0.4.3"
# The full version, including alpha/beta/rc tags.
release = "0.4.3"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
language = None
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This patterns also effect to html_static_path and html_extra_path
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = "sphinx"
# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = False
# -- Options for HTML output ----------------------------------------------
html_theme = "sphinx_rtd_theme"
# -- Options for HTMLHelp output ------------------------------------------
# Output file base name for HTML help builder.
htmlhelp_basename = "django-allauth-2fadoc"
# -- Options for LaTeX output ---------------------------------------------
latex_elements = {}
# Grouping the document tree into LaTeX files.
latex_documents = [
(
master_doc,
"django-allauth-2fa.tex",
"django-allauth-2fa Documentation",
"Víðir Valberg Guðmundsson, Percipient Networks",
"manual",
),
]
# -- Options for manual page output ---------------------------------------
man_pages = [
(master_doc, "django-allauth-2fa", "django-allauth-2fa Documentation", [author], 1),
]
# -- Options for Texinfo output -------------------------------------------
texinfo_documents = [
(
master_doc,
"django-allauth-2fa",
"django-allauth-2fa Documentation",
author,
"django-allauth-2fa",
"One line description of project.",
"Miscellaneous",
),
]
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {"https://docs.python.org/": None}