conf.py 344 B

123456789101112131415
  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 = []