44 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| import os
 | |
| 
 | |
| extensions = [
 | |
|     'sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'sphinx.ext.todo',
 | |
|     'sphinx.ext.ifconfig', 'sphinx.ext.viewcode', 'sphinxcontrib.napoleon'
 | |
| ]
 | |
| 
 | |
| templates_path = ['_templates']
 | |
| source_suffix = '.rst'
 | |
| master_doc = 'index'
 | |
| project = u'pymemcache'
 | |
| copyright = u'2015, Pinterest.com'
 | |
| 
 | |
| # The version info for the project you're documenting, acts as replacement for
 | |
| # |version| and |release|, also used in various other places throughout the
 | |
| # built documents.
 | |
| #
 | |
| # The short X.Y version.
 | |
| version = '1.0.0'
 | |
| 
 | |
| # The full version, including alpha/beta/rc tags.
 | |
| release = '1.0.0'
 | |
| 
 | |
| # List of patterns, relative to source directory, that match files and
 | |
| # directories to ignore when looking for source files.
 | |
| exclude_patterns = []
 | |
| 
 | |
| pygments_style = 'sphinx'
 | |
| # on_rtd is whether we are on readthedocs.org, this line of code grabbed from
 | |
| # docs.readthedocs.org
 | |
| 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()]
 | |
| # otherwise, readthedocs.org uses their theme by default, so no need to specify
 | |
| 
 | |
| html_static_path = ['_static']
 | |
| htmlhelp_basename = 'pymemcachedoc'
 | |
| 
 | |
| # Example configuration for intersphinx: refer to the Python standard library.
 | |
| intersphinx_mapping = {'http://docs.python.org/': None}
 | 
