conf.py 372 B

1234567891011121314151617
  1. # -*- coding: utf-8 -*-
  2. """Sphinx configuration file."""
  3. import time
  4. author = "Jan Holthuis"
  5. project = "sphinx-multiversion"
  6. release = "1.0.0"
  7. version = "1.0"
  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. ]