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.
 
 
 
 
 
 

28 lines
576 B

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