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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 

31 lines
681 B

  1. project = "Programmation en Python"
  2. copyright = "2020, Dimitri Merejkowsky"
  3. author = "Dimitri Merejkowsky - Contenu placé sous licence CC BY 4.0"
  4. version = "0.3"
  5. language = "fr"
  6. copyright = "CC BY 4.0"
  7. templates_path = ["_templates"]
  8. exclude_patterns = []
  9. keep_warnings = True
  10. extensions = [
  11. "notfound.extension",
  12. ]
  13. notfound_context = {
  14. "title": "Page non trouvée",
  15. "body": "<h1>Page non trouvée</h1>",
  16. }
  17. notfound_urls_prefix = "/python/"
  18. html_show_sourcelink = False
  19. html_show_copyright = False
  20. html_theme = "sphinx_book_theme"
  21. # Don't use default "<project> <version> documentation"
  22. html_title = project
  23. html_static_path = ["_static"]
  24. html_use_index = False