|
1 | 1 | # Configuration file for the Sphinx documentation builder. |
2 | 2 | # |
3 | | -# This file only contains a selection of the most common options. For a full |
4 | | -# list see the documentation: |
| 3 | +# For the full list of built-in configuration values, see the documentation: |
5 | 4 | # https://www.sphinx-doc.org/en/master/usage/configuration.html |
6 | 5 |
|
7 | | -# -- Path setup -------------------------------------------------------------- |
8 | | - |
9 | | -# If extensions (or modules to document with autodoc) are in another directory, |
10 | | -# add these directories to sys.path here. If the directory is relative to the |
11 | | -# documentation root, use os.path.abspath to make it absolute, like shown here. |
12 | | -# |
13 | 6 | import os |
14 | 7 | import sys |
15 | 8 | from pathlib import Path |
|
20 | 13 |
|
21 | 14 | # -- Project information ----------------------------------------------------- |
22 | 15 |
|
23 | | - |
24 | 16 | project = "JEditor" |
25 | | -copyright = "2020 ~ Now, JE-Chen" |
| 17 | +copyright = "2021 ~ Present, JE-Chen" |
26 | 18 | author = "JE-Chen" |
27 | | - |
28 | | -# The full version, including alpha/beta/rc tags |
29 | | -release = "0.0.0.1" |
| 19 | +release = "1.0.10" |
30 | 20 |
|
31 | 21 | # -- General configuration --------------------------------------------------- |
32 | 22 |
|
33 | | -# Add any Sphinx extension module names here, as strings. They can be |
34 | | -# extensions coming with Sphinx (named "sphinx.ext.*") or your custom |
35 | | -# ones. |
36 | 23 | extensions = [] |
37 | 24 |
|
38 | | -# Add any paths that contain templates here, relative to this directory. |
39 | 25 | templates_path = ["_templates"] |
40 | | - |
41 | | -# List of patterns, relative to source directory, that match files and |
42 | | -# directories to ignore when looking for source files. |
43 | | -# This pattern also affects html_static_path and html_extra_path. |
44 | 26 | exclude_patterns = [] |
45 | 27 |
|
46 | 28 | # -- Options for HTML output ------------------------------------------------- |
47 | 29 |
|
48 | | -# The theme to use for HTML and HTML Help pages. See the documentation for |
49 | | -# a list of builtin themes. |
50 | | -# |
51 | 30 | html_theme = "sphinx_rtd_theme" |
52 | | - |
53 | | -# Add any paths that contain custom static files (such as style sheets) here, |
54 | | -# relative to this directory. They are copied after the builtin static files, |
55 | | -# so a file named "default.css" will overwrite the builtin "default.css". |
56 | 31 | html_static_path = ["_static"] |
| 32 | + |
| 33 | +# -- Internationalization ---------------------------------------------------- |
| 34 | + |
| 35 | +locale_dirs = ["locale/"] |
| 36 | +gettext_compact = False |
0 commit comments