|
1 | | -# Configuration file for the Sphinx documentation builder. |
2 | | -# |
3 | | -# This file only contains a selection of the most common options. For a full |
4 | | -# list see the documentation: |
5 | | -# https://www.sphinx-doc.org/en/master/usage/configuration.html |
6 | | - |
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 | | -import os |
14 | | -import sys |
15 | | - |
16 | | -sys.path.insert(0, os.path.abspath("..")) |
17 | | - |
18 | | -import binarytree |
19 | | - |
20 | | -# -- Project information ----------------------------------------------------- |
21 | | - |
22 | 1 | project = "binarytree" |
23 | | -copyright = "2016,2017,2018,2019,2020,2021, Joohwan Oh" |
| 2 | +copyright = "2016-2021, Joohwan Oh" |
24 | 3 | author = "Joohwan Oh" |
25 | | - |
26 | | - |
27 | | -# -- General configuration --------------------------------------------------- |
28 | | - |
29 | | -# Add any Sphinx extension module names here, as strings. They can be |
30 | | -# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
31 | | -# ones. |
32 | 4 | extensions = [ |
33 | 5 | "sphinx_rtd_theme", |
34 | 6 | "sphinx.ext.autodoc", |
35 | 7 | "sphinx.ext.doctest", |
36 | 8 | "sphinx.ext.viewcode", |
37 | 9 | ] |
38 | | - |
39 | | -# List of patterns, relative to source directory, that match files and |
40 | | -# directories to ignore when looking for source files. |
41 | | -# This pattern also affects html_static_path and html_extra_path. |
42 | 10 | exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
43 | | - |
44 | | -# The version info for the project you're documenting, acts as replacement for |
45 | | -# |version| and |release|, also used in various other places throughout the |
46 | | -# built documents. |
47 | | -version = binarytree.__version__ |
48 | | -release = binarytree.__version__ |
49 | | - |
50 | | -# The master toctree document. |
51 | | -master_doc = "index" |
52 | | - |
53 | | -# -- Options for HTML output ------------------------------------------------- |
54 | | - |
55 | | -# The theme to use for HTML and HTML Help pages. See the documentation for |
56 | | -# a list of builtin themes. |
57 | | -# |
58 | 11 | html_theme = "sphinx_rtd_theme" |
59 | | - |
60 | | -htmlhelp_basename = "binarytreedoc" |
0 commit comments