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.

170 lines
5.0 KiB

  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. #
  4. # stormpy documentation build configuration file, created by
  5. # sphinx-quickstart on Mon Dec 12 16:20:40 2016.
  6. #
  7. # This file is execfile()d with the current directory set to its
  8. # containing dir.
  9. #
  10. # Note that not all possible configuration values are present in this
  11. # autogenerated file.
  12. #
  13. # All configuration values have a default; values that are commented out
  14. # serve to show the default.
  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. #
  19. # import os
  20. # import sys
  21. # sys.path.insert(0, os.path.abspath('.'))
  22. import stormpy
  23. import stormpy.logic
  24. # -- General configuration ------------------------------------------------
  25. # If your documentation needs a minimal Sphinx version, state it here.
  26. #
  27. # needs_sphinx = '1.0'
  28. # Add any Sphinx extension module names here, as strings. They can be
  29. # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
  30. # ones.
  31. extensions = ['sphinx.ext.autodoc',
  32. 'sphinx.ext.doctest',
  33. 'sphinx.ext.intersphinx',
  34. 'sphinx.ext.coverage',
  35. 'sphinx.ext.githubpages']
  36. # Add any paths that contain templates here, relative to this directory.
  37. templates_path = ['_templates']
  38. # The suffix(es) of source filenames.
  39. # You can specify multiple suffix as a list of string:
  40. #
  41. # source_suffix = ['.rst', '.md']
  42. source_suffix = '.rst'
  43. # The master toctree document.
  44. master_doc = 'index'
  45. # General information about the project.
  46. project = 'stormpy'
  47. copyright = '2016 Moves RWTH Aachen'
  48. author = 'Sebastian Junges, Matthias Volk'
  49. # The version info for the project you're documenting, acts as replacement for
  50. # |version| and |release|, also used in various other places throughout the
  51. # built documents.
  52. #
  53. # The short X.Y version.
  54. version = ''
  55. # The full version, including alpha/beta/rc tags.
  56. release = ''
  57. # The language for content autogenerated by Sphinx. Refer to documentation
  58. # for a list of supported languages.
  59. #
  60. # This is also used if you do content translation via gettext catalogs.
  61. # Usually you set "language" from the command line for these cases.
  62. language = None
  63. # List of patterns, relative to source directory, that match files and
  64. # directories to ignore when looking for source files.
  65. # This patterns also effect to html_static_path and html_extra_path
  66. exclude_patterns = []
  67. # The name of the Pygments (syntax highlighting) style to use.
  68. pygments_style = 'sphinx'
  69. # If true, `todo` and `todoList` produce output, else they produce nothing.
  70. todo_include_todos = False
  71. # If true, the current module name will be prepended to all description
  72. # unit titles (such as .. function::).
  73. add_module_names = False
  74. # -- Options for HTML output ----------------------------------------------
  75. # The theme to use for HTML and HTML Help pages. See the documentation for
  76. # a list of builtin themes.
  77. #
  78. html_theme = 'bizstyle'
  79. # Theme options are theme-specific and customize the look and feel of a theme
  80. # further. For a list of options available for each theme, see the
  81. # documentation.
  82. #
  83. # html_theme_options = {}
  84. # Add any paths that contain custom static files (such as style sheets) here,
  85. # relative to this directory. They are copied after the builtin static files,
  86. # so a file named "default.css" will overwrite the builtin "default.css".
  87. html_static_path = ['_static']
  88. # -- Options for HTMLHelp output ------------------------------------------
  89. # Output file base name for HTML help builder.
  90. htmlhelp_basename = 'stormpydoc'
  91. # -- Options for LaTeX output ---------------------------------------------
  92. latex_elements = {
  93. # The paper size ('letterpaper' or 'a4paper').
  94. #
  95. # 'papersize': 'letterpaper',
  96. # The font size ('10pt', '11pt' or '12pt').
  97. #
  98. # 'pointsize': '10pt',
  99. # Additional stuff for the LaTeX preamble.
  100. #
  101. # 'preamble': '',
  102. # Latex figure (float) alignment
  103. #
  104. # 'figure_align': 'htbp',
  105. }
  106. # Grouping the document tree into LaTeX files. List of tuples
  107. # (source start file, target name, title,
  108. # author, documentclass [howto, manual, or own class]).
  109. latex_documents = [
  110. (master_doc, 'stormpy.tex', 'stormpy Documentation',
  111. 'Sebastian Junges, Matthias Volk', 'manual'),
  112. ]
  113. # -- Options for manual page output ---------------------------------------
  114. # One entry per manual page. List of tuples
  115. # (source start file, name, description, authors, manual section).
  116. man_pages = [
  117. (master_doc, 'stormpy', 'stormpy Documentation',
  118. [author], 1)
  119. ]
  120. # -- Options for Texinfo output -------------------------------------------
  121. # Grouping the document tree into Texinfo files. List of tuples
  122. # (source start file, target name, title, author,
  123. # dir menu entry, description, category)
  124. texinfo_documents = [
  125. (master_doc, 'stormpy', 'stormpy Documentation',
  126. author, 'stormpy', 'One line description of project.',
  127. 'Miscellaneous'),
  128. ]
  129. # Example configuration for intersphinx: refer to the Python standard library.
  130. intersphinx_mapping = {'https://docs.python.org/': None}