conf.py 613 B

1234567891011121314151617181920212223
  1. import sys, os
  2. import sphinx_rtd_theme
  3. from sphinx.highlighting import lexers
  4. from pygments.lexers.web import PhpLexer
  5. lexers['php'] = PhpLexer(startinline=True, linenos=1)
  6. lexers['php-annotations'] = PhpLexer(startinline=True, linenos=1)
  7. primary_domain = 'php'
  8. extensions = []
  9. templates_path = ['_templates']
  10. source_suffix = '.rst'
  11. master_doc = 'index'
  12. project = u'RingPHP'
  13. copyright = u'2014, Michael Dowling'
  14. version = '1.0.0-alpha'
  15. exclude_patterns = ['_build']
  16. html_title = "RingPHP"
  17. html_short_title = "RingPHP"
  18. html_theme = "sphinx_rtd_theme"
  19. html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]