|
27 | 27 | # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
28 | 28 | extensions = [
|
29 | 29 | 'sphinx.ext.autodoc',
|
30 |
| - 'sphinxtogithub', |
31 | 30 | ]
|
32 | 31 |
|
33 | 32 | # Load the source for autodoc
|
34 | 33 | sys.path.insert(0, os.path.abspath(os.path.join(os.getcwd(), '..')))
|
35 | 34 |
|
36 | 35 |
|
37 |
| - |
38 | 36 | # Add any paths that contain templates here, relative to this directory.
|
39 | 37 | templates_path = ['_templates']
|
40 | 38 |
|
|
48 | 46 | master_doc = 'index'
|
49 | 47 |
|
50 | 48 | # General information about the project.
|
51 |
| -project = u'twilio-python2' |
52 |
| -copyright = u'2011, Kyle Conroy' |
| 49 | +project = u'twilio-python' |
| 50 | +copyright = u'2011, Twilio Inc.' |
53 | 51 |
|
54 | 52 | # The version info for the project you're documenting, acts as replacement for
|
55 | 53 | # |version| and |release|, also used in various other places throughout the
|
|
175 | 173 | #html_file_suffix = None
|
176 | 174 |
|
177 | 175 | # Output file base name for HTML help builder.
|
178 |
| -htmlhelp_basename = 'twilio-python2doc' |
| 176 | +htmlhelp_basename = 'twilio-pythondoc' |
179 | 177 |
|
180 | 178 |
|
181 | 179 | # -- Options for LaTeX output --------------------------------------------------
|
|
189 | 187 | # Grouping the document tree into LaTeX files. List of tuples
|
190 | 188 | # (source start file, target name, title, author, documentclass [howto/manual]).
|
191 | 189 | latex_documents = [
|
192 |
| - ('index', 'twilio-python2.tex', u'twilio-python2 Documentation', |
193 |
| - u'Kyle Conroy', 'manual'), |
| 190 | + ('index', 'twilio-python.tex', u'twilio-python Documentation', |
| 191 | + u'Twilio Inc.', 'manual'), |
194 | 192 | ]
|
195 | 193 |
|
196 | 194 | # The name of an image file (relative to this directory) to place at the top of
|
|
222 | 220 | # One entry per manual page. List of tuples
|
223 | 221 | # (source start file, name, description, authors, manual section).
|
224 | 222 | man_pages = [
|
225 |
| - ('index', 'twilio-python2', u'twilio-python2 Documentation', |
226 |
| - [u'Kyle Conroy'], 1) |
| 223 | + ('index', 'twilio-python', u'twilio-python Documentation', |
| 224 | + [u'Twilio Inc.'], 1) |
227 | 225 | ]
|
228 | 226 |
|
229 | 227 |
|
230 | 228 | # -- Options for Epub output ---------------------------------------------------
|
231 | 229 |
|
232 | 230 | # Bibliographic Dublin Core info.
|
233 |
| -epub_title = u'twilio-python2' |
234 |
| -epub_author = u'Kyle Conroy' |
235 |
| -epub_publisher = u'Kyle Conroy' |
236 |
| -epub_copyright = u'2010, Kyle Conroy' |
| 231 | +epub_title = u'twilio-python' |
| 232 | +epub_author = u'kyle@twilio.com' |
| 233 | +epub_publisher = u'Twilio Inc.' |
| 234 | +epub_copyright = u'2010, Twilio Inc.' |
237 | 235 |
|
238 | 236 | # The language of the text. It defaults to the language option
|
239 | 237 | # or en if the language is not set.
|
|
0 commit comments