Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
Questo repository è archiviato. Puoi vedere i file e clonarli, ma non puoi effettuare richieste di pushj o aprire problemi/richieste di pull.

4 anni fa
4 anni fa
4 anni fa
123456789101112131415161718192021222324252627282930
  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