1# -*- coding: utf-8 -*- 2# 3# PyASN1 documentation build configuration file, created by 4# sphinx-quickstart on Sat Jun 27 23:15:54 2015. 5# 6# This file is execfile()d with the current directory set to its 7# containing dir. 8# 9# Note that not all possible configuration values are present in this 10# autogenerated file. 11# 12# All configuration values have a default; values that are commented out 13# serve to show the default. 14 15# If extensions (or modules to document with autodoc) are in another directory, 16# add these directories to sys.path here. If the directory is relative to the 17# documentation root, use os.path.abspath to make it absolute, like shown here. 18# sys.path.insert(0, os.path.abspath('.')) 19 20# -- General configuration ------------------------------------------------ 21 22# If your documentation needs a minimal Sphinx version, state it here. 23# needs_sphinx = '1.0' 24 25# Add any Sphinx extension module names here, as strings. They can be 26# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom 27# ones. 28extensions = [ 29 'sphinx.ext.autodoc', 30 'sphinx.ext.napoleon', 31 'sphinx.ext.intersphinx', 32] 33 34# Add any paths that contain templates here, relative to this directory. 35templates_path = ['.templates'] 36 37# The suffix(es) of source filenames. 38# You can specify multiple suffix as a list of string: 39# source_suffix = ['.rst', '.md'] 40source_suffix = '.rst' 41 42# The encoding of source files. 43# source_encoding = 'utf-8-sig' 44 45# The master toctree document. 46master_doc = 'contents' 47 48# General information about the project. 49project = u'ASN.1 types and codecs' 50copyright = u'2005-2018, Ilya Etingof <etingof@gmail.com>' 51author = u'Ilya Etingof <etingof@gmail.com>' 52 53# The version info for the project you're documenting, acts as replacement for 54# |version| and |release|, also used in various other places throughout the 55# built documents. 56# 57# The short X.Y version. 58version = '0.4' 59# The full version, including alpha/beta/rc tags. 60release = '0.4' 61 62# The language for content autogenerated by Sphinx. Refer to documentation 63# for a list of supported languages. 64# 65# This is also used if you do content translation via gettext catalogs. 66# Usually you set "language" from the command line for these cases. 67language = None 68 69# There are two options for replacing |today|: either, you set today to some 70# non-false value, then it is used: 71# today = '' 72# Else, today_fmt is used as the format for a strftime call. 73# today_fmt = '%B %d, %Y' 74 75# List of patterns, relative to source directory, that match files and 76# directories to ignore when looking for source files. 77exclude_patterns = [] 78 79# The reST default role (used for this markup: `text`) to use for all 80# documents. 81# default_role = None 82 83# If true, '()' will be appended to :func: etc. cross-reference text. 84# add_function_parentheses = True 85 86# If true, the current module name will be prepended to all description 87# unit titles (such as .. function::). 88# add_module_names = True 89 90# If true, sectionauthor and moduleauthor directives will be shown in the 91# output. They are ignored by default. 92# show_authors = False 93 94# The name of the Pygments (syntax highlighting) style to use. 95pygments_style = 'sphinx' 96 97# A list of ignored prefixes for module index sorting. 98# modindex_common_prefix = [] 99 100# If true, keep warnings as "system message" paragraphs in the built documents. 101# keep_warnings = False 102 103# If true, `todo` and `todoList` produce output, else they produce nothing. 104todo_include_todos = False 105 106# -- Options for HTML output ---------------------------------------------- 107 108# The theme to use for HTML and HTML Help pages. See the documentation for 109# a list of builtin themes. 110html_theme = 'alabaster' 111 112# Theme options are theme-specific and customize the look and feel of a theme 113# further. For a list of options available for each theme, see the 114# documentation. 115html_theme_options = { 116 'logo': 'logo.svg', 117 'description': '<p align=left><i><b>Brewing free software for the greater good</i></b></p>', 118 'show_powered_by': False, 119 'github_user': 'etingof', 120 'github_repo': 'pyasn1', 121 'fixed_sidebar': True, 122} 123 124html_sidebars = { 125 '**': [ 126 'about.html', 127 'navigation.html', 128 'relations.html', 129 'searchbox.html', 130 'donate.html', 131 ] 132} 133 134# Add any paths that contain custom themes here, relative to this directory. 135# html_theme_path = [] 136 137# The name for this set of Sphinx documents. If None, it defaults to 138# "<project> v<release> documentation". 139# html_title = None 140 141# A shorter title for the navigation bar. Default is the same as html_title. 142# html_short_title = None 143 144# The name of an image file (relative to this directory) to place at the top 145# of the sidebar. 146# html_logo = "" 147 148# The name of an image file (within the static path) to use as favicon of the 149# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 150# pixels large. 151html_favicon = '.static/favicon.ico' 152 153# Add any paths that contain custom static files (such as style sheets) here, 154# relative to this directory. They are copied after the builtin static files, 155# so a file named "default.css" will overwrite the builtin "default.css". 156html_static_path = ['.static'] 157 158# Add any extra paths that contain custom files (such as robots.txt or 159# .htaccess) here, relative to this directory. These files are copied 160# directly to the root of the documentation. 161# html_extra_path = [] 162 163# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, 164# using the given strftime format. 165# html_last_updated_fmt = '%b %d, %Y' 166 167# If true, SmartyPants will be used to convert quotes and dashes to 168# typographically correct entities. 169# html_use_smartypants = True 170 171# Custom sidebar templates, maps document names to template names. 172# html_sidebars = {} 173 174# Additional templates that should be rendered to pages, maps page names to 175# template names. 176# html_additional_pages = {} 177 178# If false, no module index is generated. 179# html_domain_indices = True 180 181# If false, no index is generated. 182# html_use_index = True 183 184# If true, the index is split into individual pages for each letter. 185# html_split_index = False 186 187# If true, links to the reST sources are added to the pages. 188html_show_sourcelink = False 189 190# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. 191html_show_sphinx = False 192 193# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. 194# html_show_copyright = True 195 196# If true, an OpenSearch description file will be output, and all pages will 197# contain a <link> tag referring to it. The value of this option must be the 198# base URL from which the finished HTML is served. 199# html_use_opensearch = '' 200 201# This is the file name suffix for HTML files (e.g. ".xhtml"). 202# html_file_suffix = None 203 204# Language to be used for generating the HTML full-text search index. 205# Sphinx supports the following languages: 206# 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja' 207# 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr' 208# html_search_language = 'en' 209 210# A dictionary with options for the search language support, empty by default. 211# Now only 'ja' uses this config value 212# html_search_options = {'type': 'default'} 213 214# The name of a javascript file (relative to the configuration directory) that 215# implements a search results scorer. If empty, the default will be used. 216# html_search_scorer = 'scorer.js' 217 218# Output file base name for HTML help builder. 219htmlhelp_basename = 'pyasn1doc' 220 221# html_context = { 222# 'include_analytics': 'PYASN1DEV' in os.environ 223# } 224 225# -- Options for LaTeX output --------------------------------------------- 226 227latex_elements = { 228 # The paper size ('letterpaper' or 'a4paper'). 229 # 'papersize': 'letterpaper', 230 231 # The font size ('10pt', '11pt' or '12pt'). 232 # 'pointsize': '10pt', 233 234 # Additional stuff for the LaTeX preamble. 235 # 'preamble': '', 236 237 # Latex figure (float) alignment 238 # 'figure_align': 'htbp', 239} 240 241# Grouping the document tree into LaTeX files. List of tuples 242# (source start file, target name, title, 243# author, documentclass [howto, manual, or own class]). 244latex_documents = [ 245 (master_doc, 'PyASN1.tex', u'PyASN1 Documentation', 246 u'Ilya Etingof \\textless{}etingof@gmail.com\\textgreater{}', 'manual'), 247] 248 249# The name of an image file (relative to this directory) to place at the top of 250# the title page. 251# latex_logo = None 252 253# For "manual" documents, if this is true, then toplevel headings are parts, 254# not chapters. 255# latex_use_parts = False 256 257# If true, show page references after internal links. 258# latex_show_pagerefs = False 259 260# If true, show URL addresses after external links. 261# latex_show_urls = False 262 263# Documents to append as an appendix to all manuals. 264# latex_appendices = [] 265 266# If false, no module index is generated. 267# latex_domain_indices = True 268 269 270# -- Options for manual page output --------------------------------------- 271 272# One entry per manual page. List of tuples 273# (source start file, name, description, authors, manual section). 274man_pages = [ 275 (master_doc, 'pyasn1', u'PyASN1 Documentation', 276 [author], 1) 277] 278 279# If true, show URL addresses after external links. 280# man_show_urls = False 281 282 283# -- Options for Texinfo output ------------------------------------------- 284 285# Grouping the document tree into Texinfo files. List of tuples 286# (source start file, target name, title, author, 287# dir menu entry, description, category) 288texinfo_documents = [ 289 (master_doc, 'PyASN1', u'PyASN1 Documentation', 290 author, 'PyASN1', 'One line description of project.', 291 'Miscellaneous'), 292] 293 294# Documents to append as an appendix to all manuals. 295# texinfo_appendices = [] 296 297# If false, no module index is generated. 298# texinfo_domain_indices = True 299 300# How to display URL addresses: 'footnote', 'no', or 'inline'. 301# texinfo_show_urls = 'footnote' 302 303# If true, do not generate a @detailmenu in the "Top" node's menu. 304# texinfo_no_detailmenu = False 305 306 307# Example configuration for intersphinx: refer to the Python standard library. 308intersphinx_mapping = {'python': ('https://docs.python.org/3.4/', None)} 309 310# this merges constructor docstring with class docstring 311autoclass_content = 'both' 312# Sort members by type 313autodoc_member_order = 'bysource' 314# autodoc_member_order = 'groupwise' 315 316# Napoleon settings 317napoleon_google_docstring = False 318napoleon_numpy_docstring = True 319napoleon_include_private_with_doc = False 320napoleon_include_special_with_doc = True 321napoleon_use_admonition_for_examples = False 322napoleon_use_admonition_for_notes = False 323napoleon_use_admonition_for_references = False 324napoleon_use_ivar = False 325napoleon_use_param = False 326napoleon_use_rtype = False 327