conf.py 651 B

12345678910111213141516171819202122232425262728293031323334
  1. # -*- coding: utf-8 -*-
  2. """Sphinx configuration file."""
  3. import time
  4. author = "Jan Holthuis"
  5. project = "sphinx-multiversion"
  6. release = "0.2.1"
  7. version = "0.2"
  8. copyright = "{}, {}".format(time.strftime("%Y"), author)
  9. html_last_updated_fmt = "%c"
  10. master_doc = "index"
  11. pygments_style = "friendly"
  12. templates_path = ["_templates"]
  13. extensions = [
  14. "sphinx_multiversion",
  15. ]
  16. templates_path = [
  17. "_templates",
  18. ]
  19. html_sidebars = {
  20. "**": [
  21. "about.html",
  22. "navigation.html",
  23. "relations.html",
  24. "searchbox.html",
  25. "versioning.html",
  26. ],
  27. }
  28. smv_remote_whitelist = r"^origin$"
  29. smv_branch_whitelist = r"^master$"