conf.py 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. # -*- coding: utf-8 -*-
  2. #
  3. # All configuration values have a default; values that are commented out
  4. # serve to show the default.
  5. import sys
  6. import os
  7. from sphinx.highlighting import lexers
  8. from pygments.lexers.web import PhpLexer
  9. lexers['php'] = PhpLexer(startinline=True)
  10. # on_rtd is whether we are on readthedocs.org, this line of code grabbed from docs.readthedocs.org
  11. on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
  12. if not on_rtd: # only import and set the theme if we're building docs locally
  13. import sphinx_rtd_theme
  14. html_theme = 'sphinx_rtd_theme'
  15. html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
  16. # otherwise, readthedocs.org uses their theme by default, so no need to specify it
  17. # -- General configuration ------------------------------------------------
  18. # Add any Sphinx extension module names here, as strings. They can be
  19. # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
  20. # ones.
  21. extensions = [
  22. 'sphinx.ext.autodoc',
  23. ]
  24. # Add any paths that contain templates here, relative to this directory.
  25. templates_path = ['_templates']
  26. # The suffix of source filenames.
  27. source_suffix = '.rst'
  28. # The master toctree document.
  29. master_doc = 'index'
  30. # General information about the project.
  31. project = u'php-annotations'
  32. copyright = u'2015, Rasmus Schultz'
  33. # The version info for the project you're documenting, acts as replacement for
  34. # |version| and |release|, also used in various other places throughout the
  35. # built documents.
  36. #
  37. # The short X.Y version.
  38. version = '1.0.0'
  39. # The full version, including alpha/beta/rc tags.
  40. release = '1.0.0'
  41. # List of patterns, relative to source directory, that match files and
  42. # directories to ignore when looking for source files.
  43. exclude_patterns = ['build']
  44. # The reST default role (used for this markup: `text`) to use for all
  45. # documents.
  46. #default_role = None
  47. # If true, '()' will be appended to :func: etc. cross-reference text.
  48. #add_function_parentheses = True
  49. # The name of the Pygments (syntax highlighting) style to use.
  50. pygments_style = 'sphinx'
  51. highlight_language = 'php'
  52. # A list of ignored prefixes for module index sorting.
  53. #modindex_common_prefix = []
  54. # -- Options for HTML output ----------------------------------------------
  55. # The name for this set of Sphinx documents. If None, it defaults to
  56. # "<project> v<release> documentation".
  57. #html_title = None
  58. # A shorter title for the navigation bar. Default is the same as html_title.
  59. #html_short_title = None
  60. # The name of an image file (relative to this directory) to place at the top
  61. # of the sidebar.
  62. #html_logo = None
  63. # The name of an image file (within the static path) to use as favicon of the
  64. # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
  65. # pixels large.
  66. #html_favicon = None
  67. # Add any paths that contain custom static files (such as style sheets) here,
  68. # relative to this directory. They are copied after the builtin static files,
  69. # so a file named "default.css" will overwrite the builtin "default.css".
  70. #html_static_path = ['_static']
  71. # Add any extra paths that contain custom files (such as robots.txt or
  72. # .htaccess) here, relative to this directory. These files are copied
  73. # directly to the root of the documentation.
  74. #html_extra_path = []
  75. # If true, SmartyPants will be used to convert quotes and dashes to
  76. # typographically correct entities.
  77. #html_use_smartypants = True
  78. # If true, links to the reST sources are added to the pages.
  79. #html_show_sourcelink = True
  80. # Output file base name for HTML help builder.
  81. htmlhelp_basename = 'php-annotationsdoc'
  82. # -- Options for LaTeX output ---------------------------------------------
  83. # Grouping the document tree into LaTeX files. List of tuples
  84. # (source start file, target name, title,
  85. # author, documentclass [howto, manual, or own class]).
  86. latex_documents = [
  87. ('index', 'php-annotations.tex', u'php-annotations Documentation',
  88. u'Rasmus Schultz', 'manual'),
  89. ]
  90. # -- Options for manual page output ---------------------------------------
  91. # One entry per manual page. List of tuples
  92. # (source start file, name, description, authors, manual section).
  93. man_pages = [
  94. ('index', 'php-annotations', u'php-annotations Documentation',
  95. [u'Rasmus Schultz'], 1)
  96. ]
  97. # -- Options for Texinfo output -------------------------------------------
  98. # Grouping the document tree into Texinfo files. List of tuples
  99. # (source start file, target name, title, author,
  100. # dir menu entry, description, category)
  101. texinfo_documents = [
  102. ('index', 'php-annotations', u'php-annotations Documentation',
  103. u'Rasmus Schultz', 'php-annotations', 'One line description of project.',
  104. 'Miscellaneous'),
  105. ]