1# -*- coding: utf-8 -*-
2#
3# httplib2 documentation build configuration file, created by
4# sphinx-quickstart on Thu Mar 27 16:07:14 2008.
5#
6# This file is execfile()d with the current directory set to its containing dir.
7#
8# The contents of this file are pickled, so don't put values in the namespace
9# that aren't pickleable (module imports are okay, they're removed automatically).
10#
11# All configuration values have a default value; values that are commented out
12# serve to show the default value.
13
14import sys
15
16# If your extensions are in another directory, add it here.
17# sys.path.append('some/directory')
18
19# General configuration
20# ---------------------
21
22# Add any Sphinx extension module names here, as strings. They can be extensions
23# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
24# extensions = []
25
26# Add any paths that contain templates here, relative to this directory.
27templates_path = [".templates"]
28
29# The suffix of source filenames.
30source_suffix = ".rst"
31
32# The master toctree document.
33master_doc = "index"
34
35# General substitutions.
36project = "httplib2"
37copyright = "2008, Joe Gregorio"
38
39# The default replacements for |version| and |release|, also used in various
40# other places throughout the built documents.
41#
42# The short X.Y version.
43version = "0.4"
44# The full version, including alpha/beta/rc tags.
45release = "0.4"
46
47# There are two options for replacing |today|: either, you set today to some
48# non-false value, then it is used:
49# today = ''
50# Else, today_fmt is used as the format for a strftime call.
51today_fmt = "%B %d, %Y"
52
53# List of documents that shouldn't be included in the build.
54# unused_docs = []
55
56# If true, '()' will be appended to :func: etc. cross-reference text.
57# add_function_parentheses = True
58
59# If true, the current module name will be prepended to all description
60# unit titles (such as .. function::).
61# add_module_names = True
62
63# If true, sectionauthor and moduleauthor directives will be shown in the
64# output. They are ignored by default.
65# show_authors = False
66
67# The name of the Pygments (syntax highlighting) style to use.
68pygments_style = "sphinx"
69
70# Options for HTML output
71# -----------------------
72
73# The style sheet to use for HTML and HTML Help pages. A file of that name
74# must exist either in Sphinx' static/ path, or in one of the custom paths
75# given in html_static_path.
76html_style = "default.css"
77
78# Add any paths that contain custom static files (such as style sheets) here,
79# relative to this directory. They are copied after the builtin static files,
80# so a file named "default.css" will overwrite the builtin "default.css".
81html_static_path = [".static"]
82
83# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
84# using the given strftime format.
85html_last_updated_fmt = "%b %d, %Y"
86
87# If true, SmartyPants will be used to convert quotes and dashes to
88# typographically correct entities.
89# html_use_smartypants = True
90
91# Content template for the index page.
92# html_index = ''
93
94# Custom sidebar templates, maps document names to template names.
95# html_sidebars = {}
96
97# Additional templates that should be rendered to pages, maps page names to
98# template names.
99# html_additional_pages = {}
100
101# If false, no module index is generated.
102# html_use_modindex = True
103
104# If true, the reST sources are included in the HTML build as _sources/<name>.
105# html_copy_source = True
106
107# Output file base name for HTML help builder.
108htmlhelp_basename = "httplib2doc"
109
110# Options for LaTeX output
111# ------------------------
112
113# The paper size ('letter' or 'a4').
114# latex_paper_size = 'letter'
115
116# The font size ('10pt', '11pt' or '12pt').
117# latex_font_size = '10pt'
118
119# Grouping the document tree into LaTeX files. List of tuples
120# (source start file, target name, title, author, document class [howto/manual]).
121# latex_documents = []
122
123# Additional stuff for the LaTeX preamble.
124# latex_preamble = ''
125
126# Documents to append as an appendix to all manuals.
127# latex_appendices = []
128
129# If false, no module index is generated.
130# latex_use_modindex = True
131