mirror of
https://github.com/guzzle/guzzle.git
synced 2025-02-24 01:53:58 +01:00
29 lines
797 B
Python
29 lines
797 B
Python
import sys, os
|
|
from sphinx.highlighting import lexers
|
|
from pygments.lexers.web import PhpLexer
|
|
|
|
|
|
lexers['php'] = PhpLexer(startinline=True, linenos=1)
|
|
lexers['php-annotations'] = PhpLexer(startinline=True, linenos=1)
|
|
primary_domain = 'php'
|
|
|
|
extensions = []
|
|
templates_path = ['_templates']
|
|
source_suffix = '.rst'
|
|
master_doc = 'index'
|
|
project = u'Guzzle'
|
|
copyright = u'2014, Michael Dowling'
|
|
version = '5.0.0'
|
|
html_title = "Guzzle Documentation"
|
|
html_short_title = "Guzzle"
|
|
|
|
exclude_patterns = ['_build']
|
|
html_static_path = ['_static']
|
|
|
|
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
|
|
|
|
if not on_rtd: # only import and set the theme if we're building docs locally
|
|
import sphinx_rtd_theme
|
|
html_theme = 'sphinx_rtd_theme'
|
|
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
|