conf.py 474 B

123456789101112131415161718192021222324252627282930
  1. extensions = [
  2. 'openstackdocstheme',
  3. 'os_api_ref'
  4. ]
  5. source_suffix = '.rst'
  6. master_doc = 'index'
  7. project = u'Coriolis API Reference'
  8. copyright = u'2018-present, Cloudbase Solutions S.R.L'
  9. repository_name = 'cloudbase/coriolis'
  10. bug_project = 'coriolis'
  11. bug_tag = 'api-ref'
  12. pygments_style = 'sphinx'
  13. html_theme = 'openstackdocs'
  14. html_theme_options = {
  15. "sidebar_mode": "toc",
  16. }
  17. html_last_updated_fmt = '%Y-%m-%d %H:%M'
  18. latex_documents = [
  19. ('index'),
  20. ]