No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

hace 5 años
hace 5 años
hace 5 años
hace 4 años
hace 5 años
hace 5 años
hace 5 años
hace 5 años
123456789101112131415161718192021222324252627282930313233
  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.5'
  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'