##// END OF EJS Templates
Merge pull request #12210 from Carreau/rpy2docs...
Merge pull request #12210 from Carreau/rpy2docs update link to rpy2 object inventory

File last commit:

r25598:d394d7e4
r25599:a0c21526 merge
Show More
conf.py
295 lines | 9.5 KiB | text/x-python | PythonLexer
Ville M. Vainio
add ipython.rst to sphinx source
r1116 # -*- coding: utf-8 -*-
#
Fernando Perez
Many fixes to the documentation prior to release 0.9....
r1695 # IPython documentation build configuration file.
Fernando Perez
Update changes file and release info, as well as Sphinx conf tools.
r1539
# NOTE: This file has been edited manually from the auto-generated one from
# sphinx. Do NOT delete and re-generate. If any changes from sphinx are
# needed, generate a scratch one and merge by hand any new fields needed.
Ville M. Vainio
add ipython.rst to sphinx source
r1116 #
# This file is execfile()d with the current directory set to its containing dir.
#
# The contents of this file are pickled, so don't put values in the namespace
# that aren't pickleable (module imports are okay, they're removed automatically).
#
# All configuration values have a default value; values that are commented out
# serve to show the default value.
Brian E Granger
Beginning to organize the rst documentation.
r1256 import sys, os
Ville M. Vainio
add ipython.rst to sphinx source
r1116
Thomas Kluyver
Remove RTD handling of matplotlib for docs build
r22967 # http://read-the-docs.readthedocs.io/en/latest/faq.html
Bussonnier Matthias
allow docs to build on http://readthedocs.org/
r8151 ON_RTD = os.environ.get('READTHEDOCS', None) == 'True'
if ON_RTD:
Bussonnier Matthias
link official doc from rtfdwq
r8153 tags.add('rtd')
Min RK
run autogen_config,api,magics on RTD
r21589
# RTD doesn't use the Makefile, so re-run autogen_{things}.py here.
Matthias Bussonnier
Generate shortcuts on RTD...
r22660 for name in ('config', 'api', 'magics', 'shortcuts'):
Min RK
run autogen_config,api,magics on RTD
r21589 fname = 'autogen_{}.py'.format(name)
fpath = os.path.abspath(os.path.join('..', fname))
with open(fpath) as f:
Min RK
ensure `__name__ == __main__`...
r21592 exec(compile(f.read(), fname, 'exec'), {
'__file__': fpath,
'__name__': '__main__',
})
Matthias Bussonnier
Documentation overhaul....
r22588 else:
import sphinx_rtd_theme
html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
Min RK
run autogen_config,api,magics on RTD
r21589
Brian E Granger
Beginning to organize the rst documentation.
r1256 # If your extensions are in another directory, add it here. If the directory
# is relative to the documentation root, use os.path.abspath to make it
# absolute, like shown here.
MinRK
added gh-pages command for GitHub hosted sphinx docs
r3255 sys.path.insert(0, os.path.abspath('../sphinxext'))
Fernando Perez
Many fixes to the documentation prior to release 0.9....
r1695
Fernando Perez
Update changes file and release info, as well as Sphinx conf tools.
r1539 # We load the ipython release info into a dict by explicit execution
iprelease = {}
Min RK
py3compat: execfile in sphinx conf.py
r20284 exec(compile(open('../../IPython/core/release.py').read(), '../../IPython/core/release.py', 'exec'),iprelease)
Fernando Perez
Update changes file and release info, as well as Sphinx conf tools.
r1539
Ville M. Vainio
add ipython.rst to sphinx source
r1116 # General configuration
# ---------------------
# Add any Sphinx extension module names here, as strings. They can be extensions
Brian E Granger
Beginning to organize the rst documentation.
r1256 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
Brian Granger
Cleanup of docs....
r2275 extensions = [
'sphinx.ext.autodoc',
Thomas Kluyver
Use Sphinx autosummary extension for API docs index
r13605 'sphinx.ext.autosummary',
Brian Granger
Cleanup of docs....
r2275 'sphinx.ext.doctest',
Julian Taylor
remove copy of sphinx inheritance_diagram.py...
r10489 'sphinx.ext.inheritance_diagram',
Thomas Kluyver
Document single codebase Python 3 compatibility
r13388 'sphinx.ext.intersphinx',
Olesya Baranova
Installing Graphviz
r24076 'sphinx.ext.graphviz',
MinRK
move ipython sphinx extensions into IPython.sphinxext
r11212 'IPython.sphinxext.ipython_console_highlighting',
'IPython.sphinxext.ipython_directive',
Min RK
use napoleon instead of numpydoc
r21711 'sphinx.ext.napoleon', # to preprocess docstrings
MinRK
add github extension for easy links to issues/pulls....
r5280 'github', # for easy GitHub links
Thomas Kluyver
Add Sphinx extension to document line & cell magics
r18184 'magics',
Thomas Kluyver
Make each config option individually linkable
r23831 'configtraits',
Brian Granger
Cleanup of docs....
r2275 ]
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
# The suffix of source filenames.
Paul Ivanov
update indexes to use .rst, remove .txt refs
r11730 source_suffix = '.rst'
Ville M. Vainio
add ipython.rst to sphinx source
r1116
Matthias Bussonnier
Add warning on documentation for stop of python 2 support.
r22829 rst_prolog = ''
Matthias Bussonnier
Some rst and configuration fixes.
r22589 def is_stable(extra):
for ext in {'dev', 'b', 'rc'}:
if ext in extra:
return False
return True
if is_stable(iprelease['_version_extra']):
tags.add('ipystable')
Matthias Bussonnier
Add debug and fix build hopefully
r24542 print('Adding Tag: ipystable')
Matthias Bussonnier
Some rst and configuration fixes.
r22589 else:
tags.add('ipydev')
Matthias Bussonnier
Add debug and fix build hopefully
r24542 print('Adding Tag: ipydev')
Matthias Bussonnier
Add warning on documentation for stop of python 2 support.
r22829 rst_prolog += """
.. warning::
Matthias Bussonnier
Update phrasing with Carol suggestions.
r22845 This documentation covers a development version of IPython. The development
version may differ significantly from the latest stable release.
Matthias Bussonnier
Add warning on documentation for stop of python 2 support.
r22829 """
rst_prolog += """
.. important::
Matthias BUSSONNIER
add sphinx prolog
r11812
Matthias Bussonnier
Update phrasing with Carol suggestions.
r22845 This documentation covers IPython versions 6.0 and higher. Beginning with
version 6.0, IPython stopped supporting compatibility with Python versions
lower than 3.3 including all versions of Python 2.7.
If you are looking for an IPython version compatible with Python 2.7,
please use the IPython 5.x LTS release and refer to its documentation (LTS
is the long term support release).
Matthias BUSSONNIER
add sphinx prolog
r11812
Matthias Bussonnier
Add warning on documentation for stop of python 2 support.
r22829 """
Matthias BUSSONNIER
add sphinx prolog
r11812
Ville M. Vainio
add ipython.rst to sphinx source
r1116 # The master toctree document.
Brian E Granger
Beginning to organize the rst documentation.
r1256 master_doc = 'index'
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# General substitutions.
project = 'IPython'
MinRK
check explicitly for 'dev' before adding the note to docs...
r16176 copyright = 'The IPython Development Team'
Ville M. Vainio
add ipython.rst to sphinx source
r1116
MinRK
add github extension for easy links to issues/pulls....
r5280 # ghissue config
github_project_url = "https://github.com/ipython/ipython"
Thomas Kluyver
Set numpydoc options to produce fewer Sphinx warnings....
r14000 # numpydoc config
numpydoc_show_class_members = False # Otherwise Sphinx emits thousands of warnings
numpydoc_class_members_toctree = False
Matthias Bussonnier
Fix rtd build and be more strict about builds (fail on warn)....
r24731 warning_is_error = True
Thomas Kluyver
Set numpydoc options to produce fewer Sphinx warnings....
r14000
Ville M. Vainio
add ipython.rst to sphinx source
r1116 # The default replacements for |version| and |release|, also used in various
# other places throughout the built documents.
#
# The full version, including alpha/beta/rc tags.
MinRK
remove codename
r16025 release = "%s" % iprelease['version']
MinRK
add codename to sphinx index and what's new
r11888 # Just the X.Y.Z part, no '-dev'
version = iprelease['version'].split('-', 1)[0]
Fernando Perez
Update changes file and release info, as well as Sphinx conf tools.
r1539
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
#today = ''
# Else, today_fmt is used as the format for a strftime call.
today_fmt = '%B %d, %Y'
# List of documents that shouldn't be included in the build.
#unused_docs = []
Thomas Kluyver
Exclude whatsnew/pr directory from docs builds...
r16161 # Exclude these glob-style patterns when looking for source files. They are
# relative to the source/ directory.
Matthias Bussonnier
Start to updates the what's new / changelog....
r24535 exclude_patterns = []
Thomas Kluyver
Exclude whatsnew/pr directory from docs builds...
r16161
Brian E Granger
Beginning to organize the rst documentation.
r1256
Ville M. Vainio
add ipython.rst to sphinx source
r1116 # If true, '()' will be appended to :func: etc. cross-reference text.
#add_function_parentheses = True
# If true, the current module name will be prepended to all description
# unit titles (such as .. function::).
#add_module_names = True
# If true, sectionauthor and moduleauthor directives will be shown in the
# output. They are ignored by default.
#show_authors = False
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
Thomas Kluyver
Set default rst role to literal
r17298 # Set the default role so we can use `foo` instead of ``foo``
default_role = 'literal'
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# Options for HTML output
# -----------------------
# The style sheet to use for HTML and HTML Help pages. A file of that name
# must exist either in Sphinx' static/ path, or in one of the custom paths
# given in html_static_path.
Matthias Bussonnier
Documentation overhaul....
r22588 # html_style = 'default.css'
Carol Willing
First pass at editing pr
r22594
Ville M. Vainio
add ipython.rst to sphinx source
r1116
Brian E Granger
Beginning to organize the rst documentation.
r1256 # The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
#html_title = None
# The name of an image file (within the static path) to place at the top of
# the sidebar.
#html_logo = None
Ville M. Vainio
add ipython.rst to sphinx source
r1116 # Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
Carol Willing
First pass at editing pr
r22594
# Favicon needs the directory name
Carol Willing
Add updates to conf.py
r22593 html_favicon = '_static/favicon.ico'
Ville M. Vainio
add ipython.rst to sphinx source
r1116 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.
html_last_updated_fmt = '%b %d, %Y'
# If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities.
#html_use_smartypants = True
# Custom sidebar templates, maps document names to template names.
#html_sidebars = {}
# Additional templates that should be rendered to pages, maps page names to
# template names.
Paul Ivanov
major doc update for 1.0 release...
r12098 html_additional_pages = {
MinRK
add redirects for notebook docs moved out of interactive
r15985 'interactive/htmlnotebook': 'notebook_redirect.html',
'interactive/notebook': 'notebook_redirect.html',
'interactive/nbconvert': 'notebook_redirect.html',
'interactive/public_server': 'notebook_redirect.html',
Paul Ivanov
major doc update for 1.0 release...
r12098 }
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# If false, no module index is generated.
#html_use_modindex = True
# If true, the reST sources are included in the HTML build as _sources/<name>.
#html_copy_source = True
Brian E Granger
Beginning to organize the rst documentation.
r1256 # If true, an OpenSearch description file will be output, and all pages will
# contain a <link> tag referring to it. The value of this option must be the
# base URL from which the finished HTML is served.
#html_use_opensearch = ''
# If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
#html_file_suffix = ''
Ville M. Vainio
add ipython.rst to sphinx source
r1116 # Output file base name for HTML help builder.
Fernando Perez
Many fixes to the documentation prior to release 0.9....
r1695 htmlhelp_basename = 'ipythondoc'
Ville M. Vainio
add ipython.rst to sphinx source
r1116
Matthias Bussonnier
'update intersphinx'
r22599 intersphinx_mapping = {'python': ('https://docs.python.org/3/', None),
Matthias Bussonnier
update link to rpy2 object inventory
r25598 'rpy2': ('https://rpy2.github.io/doc/latest/html/', None),
Matthias Bussonnier
'update intersphinx'
r22599 'jupyterclient': ('https://jupyter-client.readthedocs.io/en/latest/', None),
'jupyter': ('https://jupyter.readthedocs.io/en/latest/', None),
Matthias Bussonnier
First step in reintegrating Jedi...
r23284 'jedi': ('https://jedi.readthedocs.io/en/latest/', None),
'traitlets': ('https://traitlets.readthedocs.io/en/latest/', None),
Matthias Bussonnier
'fix some links in whatsnew'
r23464 'ipykernel': ('https://ipykernel.readthedocs.io/en/latest/', None),
Matthias Bussonnier
Add some links in documentation
r23476 'prompt_toolkit' : ('https://python-prompt-toolkit.readthedocs.io/en/stable/', None),
'ipywidgets': ('https://ipywidgets.readthedocs.io/en/stable/', None),
Matthias Bussonnier
too many nitpicks
r24736 'ipyparallel': ('https://ipyparallel.readthedocs.io/en/stable/', None),
'pip': ('https://pip.pypa.io/en/stable/', None)
Thomas Kluyver
Remove documentation of machinery that is now in traitlets...
r21385 }
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# Options for LaTeX output
# ------------------------
# The paper size ('letter' or 'a4').
Brian E Granger
Beginning to organize the rst documentation.
r1256 latex_paper_size = 'letter'
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# The font size ('10pt', '11pt' or '12pt').
Fernando Perez
Fixes to build/setup machinery....
r1525 latex_font_size = '11pt'
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, document class [howto/manual]).
Fernando Perez
Fixes to build/setup machinery....
r1525
Brian Granger
Initial draft of Windows HPC documentation.
r2344 latex_documents = [
('index', 'ipython.tex', 'IPython Documentation',
Min RK
python3 syntax fixes on various scripts...
r20277 u"""The IPython Development Team""", 'manual', True),
Brian Granger
Initial draft of Windows HPC documentation.
r2344 ('parallel/winhpc_index', 'winhpc_whitepaper.tex',
'Using IPython on Windows HPC Server 2008',
Min RK
python3 syntax fixes on various scripts...
r20277 u"Brian E. Granger", 'manual', True)
Brian Granger
Initial draft of Windows HPC documentation.
r2344 ]
Brian E Granger
Beginning to organize the rst documentation.
r1256
# The name of an image file (relative to this directory) to place at the top of
# the title page.
#latex_logo = None
# For "manual" documents, if this is true, then toplevel headings are parts,
# not chapters.
#latex_use_parts = False
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# Additional stuff for the LaTeX preamble.
Ville M. Vainio
docs: new changes by james spencer to improve pdf doc style....
r1185 #latex_preamble = ''
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# Documents to append as an appendix to all manuals.
#latex_appendices = []
# If false, no module index is generated.
Fernando Perez
Several small fixes during code review with Brian....
r2339 latex_use_modindex = True
Fernando Perez
Update changes file and release info, as well as Sphinx conf tools.
r1539
Takafumi Arakaki
Add info make target that was missing in old Sphinx
r10009 # Options for texinfo output
# --------------------------
texinfo_documents = [
(master_doc, 'ipython', 'IPython Documentation',
'The IPython Development Team',
'IPython',
'IPython Documentation',
'Programming',
1),
]
Matthias BUSSONNIER
common IPython prefix for ModIndex
r13812 modindex_common_prefix = ['IPython.']
Takafumi Arakaki
Add info make target that was missing in old Sphinx
r10009
Fernando Perez
Many fixes to the documentation prior to release 0.9....
r1695 # Cleanup
# -------
# delete release info to avoid pickling errors from sphinx
Fernando Perez
Update changes file and release info, as well as Sphinx conf tools.
r1539 del iprelease