Show More
@@ -1,165 +1,166 b'' | |||
|
1 | 1 | # -*- coding: utf-8 -*- |
|
2 | 2 | # |
|
3 | 3 | # IPython documentation build configuration file, created by |
|
4 | 4 | # sphinx-quickstart on Thu May 8 16:45:02 2008. |
|
5 | 5 | # |
|
6 | 6 | # This file is execfile()d with the current directory set to its containing dir. |
|
7 | 7 | # |
|
8 | 8 | # The contents of this file are pickled, so don't put values in the namespace |
|
9 | 9 | # that aren't pickleable (module imports are okay, they're removed automatically). |
|
10 | 10 | # |
|
11 | 11 | # All configuration values have a default value; values that are commented out |
|
12 | 12 | # serve to show the default value. |
|
13 | 13 | |
|
14 | 14 | import sys, os |
|
15 | 15 | |
|
16 | 16 | # If your extensions are in another directory, add it here. If the directory |
|
17 | 17 | # is relative to the documentation root, use os.path.abspath to make it |
|
18 | 18 | # absolute, like shown here. |
|
19 | 19 | #sys.path.append(os.path.abspath('some/directory')) |
|
20 | 20 | |
|
21 | 21 | # General configuration |
|
22 | 22 | # --------------------- |
|
23 | 23 | |
|
24 | 24 | # Add any Sphinx extension module names here, as strings. They can be extensions |
|
25 | 25 | # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. |
|
26 | 26 | #extensions = [] |
|
27 | 27 | |
|
28 | 28 | # Add any paths that contain templates here, relative to this directory. |
|
29 | 29 | templates_path = ['_templates'] |
|
30 | 30 | |
|
31 | 31 | # The suffix of source filenames. |
|
32 | 32 | source_suffix = '.txt' |
|
33 | 33 | |
|
34 | 34 | # The master toctree document. |
|
35 | 35 | master_doc = 'index' |
|
36 | 36 | |
|
37 | 37 | # General substitutions. |
|
38 | 38 | project = 'IPython' |
|
39 | 39 | copyright = '2008, The IPython Development Team' |
|
40 | 40 | |
|
41 | 41 | # The default replacements for |version| and |release|, also used in various |
|
42 | 42 | # other places throughout the built documents. |
|
43 | 43 | # |
|
44 | 44 | # The short X.Y version. |
|
45 | 45 | version = '0.9' |
|
46 | 46 | # The full version, including alpha/beta/rc tags. |
|
47 | 47 | release = '0.9.beta1' |
|
48 | 48 | |
|
49 | 49 | # There are two options for replacing |today|: either, you set today to some |
|
50 | 50 | # non-false value, then it is used: |
|
51 | 51 | #today = '' |
|
52 | 52 | # Else, today_fmt is used as the format for a strftime call. |
|
53 | 53 | today_fmt = '%B %d, %Y' |
|
54 | 54 | |
|
55 | 55 | # List of documents that shouldn't be included in the build. |
|
56 | 56 | #unused_docs = [] |
|
57 | 57 | |
|
58 | 58 | # List of directories, relative to source directories, that shouldn't be searched |
|
59 | 59 | # for source files. |
|
60 | 60 | #exclude_dirs = [] |
|
61 | 61 | |
|
62 | 62 | # If true, '()' will be appended to :func: etc. cross-reference text. |
|
63 | 63 | #add_function_parentheses = True |
|
64 | 64 | |
|
65 | 65 | # If true, the current module name will be prepended to all description |
|
66 | 66 | # unit titles (such as .. function::). |
|
67 | 67 | #add_module_names = True |
|
68 | 68 | |
|
69 | 69 | # If true, sectionauthor and moduleauthor directives will be shown in the |
|
70 | 70 | # output. They are ignored by default. |
|
71 | 71 | #show_authors = False |
|
72 | 72 | |
|
73 | 73 | # The name of the Pygments (syntax highlighting) style to use. |
|
74 | 74 | pygments_style = 'sphinx' |
|
75 | 75 | |
|
76 | 76 | |
|
77 | 77 | # Options for HTML output |
|
78 | 78 | # ----------------------- |
|
79 | 79 | |
|
80 | 80 | # The style sheet to use for HTML and HTML Help pages. A file of that name |
|
81 | 81 | # must exist either in Sphinx' static/ path, or in one of the custom paths |
|
82 | 82 | # given in html_static_path. |
|
83 | 83 | html_style = 'default.css' |
|
84 | 84 | |
|
85 | 85 | # The name for this set of Sphinx documents. If None, it defaults to |
|
86 | 86 | # "<project> v<release> documentation". |
|
87 | 87 | #html_title = None |
|
88 | 88 | |
|
89 | 89 | # The name of an image file (within the static path) to place at the top of |
|
90 | 90 | # the sidebar. |
|
91 | 91 | #html_logo = None |
|
92 | 92 | |
|
93 | 93 | # Add any paths that contain custom static files (such as style sheets) here, |
|
94 | 94 | # relative to this directory. They are copied after the builtin static files, |
|
95 | 95 | # so a file named "default.css" will overwrite the builtin "default.css". |
|
96 | 96 | html_static_path = ['_static'] |
|
97 | 97 | |
|
98 | 98 | # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, |
|
99 | 99 | # using the given strftime format. |
|
100 | 100 | html_last_updated_fmt = '%b %d, %Y' |
|
101 | 101 | |
|
102 | 102 | # If true, SmartyPants will be used to convert quotes and dashes to |
|
103 | 103 | # typographically correct entities. |
|
104 | 104 | #html_use_smartypants = True |
|
105 | 105 | |
|
106 | 106 | # Custom sidebar templates, maps document names to template names. |
|
107 | 107 | #html_sidebars = {} |
|
108 | 108 | |
|
109 | 109 | # Additional templates that should be rendered to pages, maps page names to |
|
110 | 110 | # template names. |
|
111 | 111 | #html_additional_pages = {} |
|
112 | 112 | |
|
113 | 113 | # If false, no module index is generated. |
|
114 | 114 | #html_use_modindex = True |
|
115 | 115 | |
|
116 | 116 | # If true, the reST sources are included in the HTML build as _sources/<name>. |
|
117 | 117 | #html_copy_source = True |
|
118 | 118 | |
|
119 | 119 | # If true, an OpenSearch description file will be output, and all pages will |
|
120 | 120 | # contain a <link> tag referring to it. The value of this option must be the |
|
121 | 121 | # base URL from which the finished HTML is served. |
|
122 | 122 | #html_use_opensearch = '' |
|
123 | 123 | |
|
124 | 124 | # If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml"). |
|
125 | 125 | #html_file_suffix = '' |
|
126 | 126 | |
|
127 | 127 | # Output file base name for HTML help builder. |
|
128 | 128 | htmlhelp_basename = 'IPythondoc' |
|
129 | 129 | |
|
130 | 130 | |
|
131 | 131 | # Options for LaTeX output |
|
132 | 132 | # ------------------------ |
|
133 | 133 | |
|
134 | 134 | # The paper size ('letter' or 'a4'). |
|
135 | 135 | latex_paper_size = 'letter' |
|
136 | 136 | |
|
137 | 137 | # The font size ('10pt', '11pt' or '12pt'). |
|
138 | 138 | latex_font_size = '11pt' |
|
139 | 139 | |
|
140 | 140 | # Grouping the document tree into LaTeX files. List of tuples |
|
141 | 141 | # (source start file, target name, title, author, document class [howto/manual]). |
|
142 | 142 | |
|
143 | 143 | latex_documents = [ ('index', 'IPython.tex', 'IPython Documentation', |
|
144 |
ur"""Brian Granger |
|
|
144 | ur"""Brian Granger, Fernando Pérez and Ville Vainio\\ | |
|
145 | \ \\ | |
|
145 | 146 | With contributions from:\\ |
|
146 |
Benjamin Ragan-Kelley |
|
|
147 | Benjamin Ragan-Kelley.""", | |
|
147 | 148 | 'manual'), |
|
148 | 149 | ] |
|
149 | 150 | |
|
150 | 151 | # The name of an image file (relative to this directory) to place at the top of |
|
151 | 152 | # the title page. |
|
152 | 153 | #latex_logo = None |
|
153 | 154 | |
|
154 | 155 | # For "manual" documents, if this is true, then toplevel headings are parts, |
|
155 | 156 | # not chapters. |
|
156 | 157 | #latex_use_parts = False |
|
157 | 158 | |
|
158 | 159 | # Additional stuff for the LaTeX preamble. |
|
159 | 160 | #latex_preamble = '' |
|
160 | 161 | |
|
161 | 162 | # Documents to append as an appendix to all manuals. |
|
162 | 163 | #latex_appendices = [] |
|
163 | 164 | |
|
164 | 165 | # If false, no module index is generated. |
|
165 | 166 | #latex_use_modindex = True |
General Comments 0
You need to be logged in to leave comments.
Login now