|
11 | 11 | # All configuration values have a default; values that are commented out
|
12 | 12 | # serve to show the default.
|
13 | 13 |
|
14 |
| -# import sys |
15 |
| -# import os |
| 14 | +import sys |
| 15 | +import os |
| 16 | +import argparse |
16 | 17 |
|
17 | 18 | # If extensions (or modules to document with autodoc) are in another directory,
|
18 | 19 | # add these directories to sys.path here. If the directory is relative to the
|
19 | 20 | # documentation root, use os.path.abspath to make it absolute, like shown here.
|
20 |
| -# sys.path.insert(0, os.path.abspath('.')) |
| 21 | +sys.path.insert(0, os.path.abspath('../pythonrepo')) |
21 | 22 |
|
22 | 23 | # -- General configuration -----------------------------------------------------
|
23 | 24 |
|
24 | 25 | # If your documentation needs a minimal Sphinx version, state it here.
|
25 |
| -# needs_sphinx = '1.0' |
| 26 | +needs_sphinx = '4.0' |
26 | 27 |
|
27 | 28 | # Add any Sphinx extension module names here, as strings. They can be extensions
|
28 | 29 | # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
|
35 | 36 | source_suffix = '.md'
|
36 | 37 |
|
37 | 38 | # The encoding of source files.
|
38 |
| -# source_encoding = 'utf-8-sig' |
| 39 | +source_encoding = 'utf-8' |
39 | 40 |
|
40 | 41 | # The master toctree document.
|
41 | 42 | master_doc = 'index'
|
|
49 | 50 | # built documents.
|
50 | 51 | #
|
51 | 52 | # The short X.Y version.
|
52 |
| -version = 'v1.1' |
| 53 | +version = 'v2.0' |
53 | 54 | # The full version, including alpha/beta/rc tags.
|
54 |
| -release = 'v1.1.4' |
| 55 | +release = 'v2.0.0-alpha' |
55 | 56 |
|
56 | 57 | # The language for content autogenerated by Sphinx. Refer to documentation
|
57 | 58 | # for a list of supported languages.
|
|
62 | 63 | # today = ''
|
63 | 64 | # Else, today_fmt is used as the format for a strftime call.
|
64 | 65 | # today_fmt = '%B %d, %Y'
|
| 66 | +today_fmt = '%Y.%B.%d' |
65 | 67 |
|
66 | 68 | # List of patterns, relative to source directory, that match files and
|
67 | 69 | # directories to ignore when looking for source files.
|
68 |
| -exclude_patterns = ['_build', 'tests'] |
| 70 | +exclude_patterns = ['_build', '.github/', '.circleci/', 'dist', 'tests'] |
69 | 71 |
|
70 | 72 | # The reST default role (used for this markup: `text`) to use for all documents.
|
71 | 73 | # default_role = None
|
72 | 74 |
|
73 | 75 | # If true, '()' will be appended to :func: etc. cross-reference text.
|
74 |
| -# add_function_parentheses = True |
| 76 | +add_function_parentheses = True |
75 | 77 |
|
76 | 78 | # If true, the current module name will be prepended to all description
|
77 | 79 | # unit titles (such as .. function::).
|
78 |
| -# add_module_names = True |
| 80 | +add_module_names = True |
79 | 81 |
|
80 | 82 | # If true, sectionauthor and moduleauthor directives will be shown in the
|
81 | 83 | # output. They are ignored by default.
|
|
0 commit comments