]>
Commit | Line | Data |
---|---|---|
9a924317 FLM |
1 | # Configuration file for the Sphinx documentation builder. |
2 | # | |
3 | # For the full list of built-in configuration values, see the documentation: | |
4 | # https://www.sphinx-doc.org/en/master/usage/configuration.html | |
5 | ||
6 | # -- Project information ----------------------------------------------------- | |
7 | # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information | |
8 | ||
9 | project = 'papier-crayon' | |
10 | copyright = '2024, M. Le Meur' | |
11 | author = 'M. Le Meur' | |
ad63942c | 12 | release = '0.1.3b' |
9a924317 FLM |
13 | |
14 | # -- General configuration --------------------------------------------------- | |
15 | # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration | |
16 | ||
2514efc5 FLM |
17 | extensions = ['myst_parser'] |
18 | ||
19 | source_suffix = { | |
20 | '.rst': 'restructuredtext', | |
21 | '.txt': 'restructuredtext', | |
22 | '.md': 'markdown', | |
23 | } | |
24 | ||
9a924317 FLM |
25 | |
26 | templates_path = ['_templates'] | |
27 | exclude_patterns = [] | |
28 | ||
29 | language = 'fr' | |
30 | ||
31 | # -- Options for HTML output ------------------------------------------------- | |
32 | # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output | |
33 | ||
34 | html_theme = 'alabaster' | |
35 | html_static_path = ['_static'] |