conf.py 591 B

12345678910111213141516171819202122232425
  1. import sphinx_rtd_theme
  2. project = 'opentracing-python'
  3. copyright = 'The OpenTracing Authors'
  4. author = 'The OpenTracing Authors'
  5. version = '1.2.3.dev0'
  6. release = '1.2'
  7. needs_sphinx = '1.0'
  8. extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx']
  9. templates_path = []
  10. source_suffix = '.rst'
  11. source_encoding = 'utf-8'
  12. master_doc = 'index'
  13. html_theme = 'sphinx_rtd_theme'
  14. html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
  15. html_static_path = []
  16. exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
  17. intersphinx_mapping = {
  18. 'python': ('https://docs.python.org/', None),
  19. }