/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/doc_generate/conf.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-11-18 17:39:59 UTC
  • mfrom: (7192.3.13 more-doc-improvements)
  • Revision ID: breezy.the.bot@gmail.com-20181118173959-tg2bpyx5qcqqlcje
Update more links, add API documentation.

Merged from https://code.launchpad.net/~jelmer/brz/more-doc-improvements/+merge/358955

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
# Add any Sphinx extension module names here, as strings. They can be extensions
23
23
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
24
 
extensions = ['sphinx.ext.ifconfig', ]
 
24
extensions = [
 
25
    'sphinx.ext.ifconfig',
 
26
    'sphinx.ext.autodoc',
 
27
    'sphinx.ext.intersphinx',
 
28
    'sphinx_epytext',
 
29
    # 'sphinxcontrib.napoleon', # TODO: for Google docstrings
 
30
    ]
25
31
 
26
32
# Add any paths that contain templates here, relative to this directory.
27
33
templates_path = ['_templates']
216
222
 
217
223
# Authors of the documents
218
224
brz_team = u'Breezy Developers'
 
225
 
 
226
intersphinx_mapping = {
 
227
    'python': ('https://docs.python.org/3', None),
 
228
}