1# -*- coding: utf-8 -*- 2# 3# Mock documentation build configuration file, created by 4# sphinx-quickstart on Mon Nov 17 18:12:00 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, os 15sys.path.insert(0, os.path.abspath('..')) 16 17import mock 18 19# If your extensions are in another directory, add it here. If the directory 20# is relative to the documentation root, use os.path.abspath to make it 21# absolute, like shown here. 22#sys.path.append(os.path.abspath('some/directory')) 23 24# General configuration 25# --------------------- 26 27# Add any Sphinx extension module names here, as strings. They can be extensions 28# coming with Sphinx (named 'sphinx.ext.*') or your custom ones. 29extensions = ['sphinx.ext.doctest'] 30 31doctest_global_setup = """ 32import os 33import sys 34import mock 35from mock import * # yeah, I know :-/ 36import unittest2 37import __main__ 38 39if os.getcwd() not in sys.path: 40 sys.path.append(os.getcwd()) 41 42# keep a reference to __main__ 43sys.modules['__main'] = __main__ 44 45class ProxyModule(object): 46 def __init__(self): 47 self.__dict__ = globals() 48 49sys.modules['__main__'] = ProxyModule() 50""" 51 52doctest_global_cleanup = """ 53sys.modules['__main__'] = sys.modules['__main'] 54""" 55 56html_theme = 'nature' 57html_theme_options = {} 58 59# Add any paths that contain templates here, relative to this directory. 60#templates_path = ['_templates'] 61 62# The suffix of source filenames. 63source_suffix = '.txt' 64 65# The master toctree document. 66master_doc = 'index' 67 68# General substitutions. 69project = u'Mock' 70copyright = u'2007-2015, Michael Foord & the mock team' 71 72# The default replacements for |version| and |release|, also used in various 73# other places throughout the built documents. Supplied by pbr. 74# 75# The short X.Y version. 76version = mock.mock._v.brief_string() 77# The full version, including alpha/beta/rc tags. 78release = mock.__version__ 79 80# There are two options for replacing |today|: either, you set today to some 81# non-false value, then it is used: (Set from pbr) 82today = '' 83# Else, today_fmt is used as the format for a strftime call. 84# today_fmt = '%B %d, %Y' 85 86# List of documents that shouldn't be included in the build. 87#unused_docs = [] 88 89# List of directories, relative to source directories, that shouldn't be searched 90# for source files. 91exclude_trees = [] 92 93# The reST default role (used for this markup: `text`) to use for all documents. 94#default_role = None 95 96# If true, '()' will be appended to :func: etc. cross-reference text. 97#add_function_parentheses = True 98 99# If true, the current module name will be prepended to all description 100# unit titles (such as .. function::). 101add_module_names = False 102 103# If true, sectionauthor and moduleauthor directives will be shown in the 104# output. They are ignored by default. 105#show_authors = False 106 107# The name of the Pygments (syntax highlighting) style to use. 108pygments_style = 'friendly' 109 110 111# Options for HTML output 112# ----------------------- 113 114# The style sheet to use for HTML and HTML Help pages. A file of that name 115# must exist either in Sphinx' static/ path, or in one of the custom paths 116# given in html_static_path. 117#html_style = 'adctheme.css' 118 119# The name for this set of Sphinx documents. If None, it defaults to 120# "<project> v<release> documentation". 121#html_title = None 122 123# A shorter title for the navigation bar. Default is the same as html_title. 124#html_short_title = None 125 126# The name of an image file (relative to this directory) to place at the top 127# of the sidebar. 128#html_logo = None 129 130# The name of an image file (within the static path) to use as favicon of the 131# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 132# pixels large. 133#html_favicon = None 134 135# Add any paths that contain custom static files (such as style sheets) here, 136# relative to this directory. They are copied after the builtin static files, 137# so a file named "default.css" will overwrite the builtin "default.css". 138#html_static_path = ['_static'] 139 140# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, 141# using the given strftime format. 142html_last_updated_fmt = '%b %d, %Y' 143 144# If true, SmartyPants will be used to convert quotes and dashes to 145# typographically correct entities. 146#html_use_smartypants = True 147 148# Custom sidebar templates, maps document names to template names. 149#html_sidebars = {} 150 151# Additional templates that should be rendered to pages, maps page names to 152# template names. 153#html_additional_pages = {} 154 155# If false, no module index is generated. 156html_use_modindex = False 157 158# If false, no index is generated. 159#html_use_index = True 160 161# If true, the index is split into individual pages for each letter. 162#html_split_index = False 163 164# If true, the reST sources are included in the HTML build as _sources/<name>. 165#html_copy_source = True 166 167# If true, an OpenSearch description file will be output, and all pages will 168# contain a <link> tag referring to it. The value of this option must be the 169# base URL from which the finished HTML is served. 170#html_use_opensearch = '' 171 172# If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml"). 173#html_file_suffix = '' 174 175# Output file base name for HTML help builder. 176htmlhelp_basename = 'Mockdoc' 177 178 179# Options for LaTeX output 180# ------------------------ 181 182# The paper size ('letter' or 'a4'). 183#latex_paper_size = 'letter' 184 185# The font size ('10pt', '11pt' or '12pt'). 186latex_font_size = '12pt' 187 188# Grouping the document tree into LaTeX files. List of tuples 189# (source start file, target name, title, author, document class [howto/manual]). 190latex_documents = [ 191 ('index', 'Mock.tex', u'Mock Documentation', 192 u'Michael Foord', 'manual'), 193] 194 195# The name of an image file (relative to this directory) to place at the top of 196# the title page. 197#latex_logo = None 198 199# For "manual" documents, if this is true, then toplevel headings are parts, 200# not chapters. 201#latex_use_parts = False 202 203# Additional stuff for the LaTeX preamble. 204#latex_preamble = '' 205 206# Documents to append as an appendix to all manuals. 207#latex_appendices = [] 208 209# If false, no module index is generated. 210latex_use_modindex = False 211