You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 line
870B

  1. # -*- coding: utf-8 -*-
  2. # Refer: http://www.sphinx-doc.org/en/master/config
  3. import os
  4. # -- Project information -----------------------------------------------------
  5. project = 'dds'
  6. copyright = '2020, vector-of-bool'
  7. author = 'vector-of-bool'
  8. # The short X.Y version
  9. version = ''
  10. # The full version, including alpha/beta/rc tags
  11. release = '0.1.0-alpha.4'
  12. # -- General configuration ---------------------------------------------------
  13. extensions = []
  14. templates_path = []
  15. source_suffix = '.rst'
  16. master_doc = 'index'
  17. language = None
  18. exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
  19. pygments_style = None
  20. # -- Options for HTML output -------------------------------------------------
  21. html_theme = 'nature'
  22. html_theme_options = {}
  23. html_static_path = []
  24. html_sidebars = {}
  25. if os.environ.get('GEN_FOR_HUGO'):
  26. templates_path.append('.')
  27. html_theme = 'basic'