Playbooks to a new Lilik
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

156 lines
4.7 KiB

  1. # -*- coding: utf-8 -*-
  2. #
  3. # lilik_playbook documentation build configuration file, created by
  4. # sphinx-quickstart on Fri Apr 7 14:02:37 2017.
  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. # If extensions (or modules to document with autodoc) are in another directory,
  15. # add these directories to sys.path here. If the directory is relative to the
  16. # documentation root, use os.path.abspath to make it absolute, like shown here.
  17. #
  18. # import os
  19. # import sys
  20. # sys.path.insert(0, os.path.abspath('.'))
  21. # -- General configuration ------------------------------------------------
  22. # If your documentation needs a minimal Sphinx version, state it here.
  23. #
  24. # needs_sphinx = '1.0'
  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.
  28. extensions = ['sphinx.ext.githubpages']
  29. # Add any paths that contain templates here, relative to this directory.
  30. templates_path = ['_templates']
  31. # The suffix(es) of source filenames.
  32. # You can specify multiple suffix as a list of string:
  33. #
  34. # source_suffix = ['.rst', '.md']
  35. source_suffix = '.rst'
  36. # The master toctree document.
  37. master_doc = 'index'
  38. # General information about the project.
  39. project = u'lilik_playbook'
  40. copyright = u'2017, edoput, kaos, slash'
  41. author = u'edoput, kaos, slash'
  42. # The version info for the project you're documenting, acts as replacement for
  43. # |version| and |release|, also used in various other places throughout the
  44. # built documents.
  45. #
  46. # The short X.Y version.
  47. version = u'0.1'
  48. # The full version, including alpha/beta/rc tags.
  49. release = u'0.1'
  50. # The language for content autogenerated by Sphinx. Refer to documentation
  51. # for a list of supported languages.
  52. #
  53. # This is also used if you do content translation via gettext catalogs.
  54. # Usually you set "language" from the command line for these cases.
  55. language = None
  56. # List of patterns, relative to source directory, that match files and
  57. # directories to ignore when looking for source files.
  58. # This patterns also effect to html_static_path and html_extra_path
  59. exclude_patterns = []
  60. # The name of the Pygments (syntax highlighting) style to use.
  61. pygments_style = 'sphinx'
  62. # If true, `todo` and `todoList` produce output, else they produce nothing.
  63. todo_include_todos = False
  64. # -- Options for HTML output ----------------------------------------------
  65. # The theme to use for HTML and HTML Help pages. See the documentation for
  66. # a list of builtin themes.
  67. #
  68. html_theme = 'alabaster'
  69. # Theme options are theme-specific and customize the look and feel of a theme
  70. # further. For a list of options available for each theme, see the
  71. # documentation.
  72. #
  73. # html_theme_options = {}
  74. # Add any paths that contain custom static files (such as style sheets) here,
  75. # relative to this directory. They are copied after the builtin static files,
  76. # so a file named "default.css" will overwrite the builtin "default.css".
  77. html_static_path = ['_static']
  78. # -- Options for HTMLHelp output ------------------------------------------
  79. # Output file base name for HTML help builder.
  80. htmlhelp_basename = 'lilik_playbookdoc'
  81. # -- Options for LaTeX output ---------------------------------------------
  82. latex_elements = {
  83. # The paper size ('letterpaper' or 'a4paper').
  84. #
  85. # 'papersize': 'letterpaper',
  86. # The font size ('10pt', '11pt' or '12pt').
  87. #
  88. # 'pointsize': '10pt',
  89. # Additional stuff for the LaTeX preamble.
  90. #
  91. # 'preamble': '',
  92. # Latex figure (float) alignment
  93. #
  94. # 'figure_align': 'htbp',
  95. }
  96. # Grouping the document tree into LaTeX files. List of tuples
  97. # (source start file, target name, title,
  98. # author, documentclass [howto, manual, or own class]).
  99. latex_documents = [
  100. (master_doc, 'lilik_playbook.tex', u'lilik\\_playbook Documentation',
  101. u'edoput, kaos, slash', 'manual'),
  102. ]
  103. # -- Options for manual page output ---------------------------------------
  104. # One entry per manual page. List of tuples
  105. # (source start file, name, description, authors, manual section).
  106. man_pages = [
  107. (master_doc, 'lilik_playbook', u'lilik_playbook Documentation',
  108. [author], 1)
  109. ]
  110. # -- Options for Texinfo output -------------------------------------------
  111. # Grouping the document tree into Texinfo files. List of tuples
  112. # (source start file, target name, title, author,
  113. # dir menu entry, description, category)
  114. texinfo_documents = [
  115. (master_doc, 'lilik_playbook', u'lilik_playbook Documentation',
  116. author, 'lilik_playbook', 'One line description of project.',
  117. 'Miscellaneous'),
  118. ]