conf.py 715 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Configuration file for the Sphinx documentation builder.
  2. # -- Project information
  3. project = 'OpenFHE-rs'
  4. copyright = '2024, Fair Math'
  5. author = 'Fair Math'
  6. release = '0.1'
  7. version = '0.1.0'
  8. # -- General configuration
  9. extensions = [
  10. 'sphinx.ext.duration',
  11. 'sphinx.ext.doctest',
  12. 'sphinx.ext.autodoc',
  13. 'sphinx.ext.autosummary',
  14. 'sphinx.ext.intersphinx',
  15. ]
  16. intersphinx_mapping = {
  17. 'python': ('https://docs.python.org/3/', None),
  18. 'sphinx': ('https://www.sphinx-doc.org/en/master/', None),
  19. }
  20. intersphinx_disabled_domains = ['std']
  21. templates_path = ['_templates']
  22. # -- Options for HTML output
  23. html_theme = 'sphinx_rtd_theme'
  24. # -- Options for EPUB output
  25. epub_show_urls = 'footnote'