|
21 | 21 | # import sys
|
22 | 22 | # sys.path.insert(0, os.path.abspath('.'))
|
23 | 23 |
|
| 24 | +# -- Project information ----------------------------------------------------- |
| 25 | + |
| 26 | +project = 'pgloader' |
| 27 | +copyright = '2005-2022, Dimitri Fontaine' |
| 28 | +author = 'Dimitri Fontaine' |
| 29 | + |
| 30 | +version = '3.6' |
| 31 | +release = '3.6.8' |
24 | 32 |
|
25 | 33 | # -- General configuration ------------------------------------------------
|
26 | 34 |
|
27 |
| -# If your documentation needs a minimal Sphinx version, state it here. |
28 |
| -# |
29 |
| -# needs_sphinx = '1.0' |
| 35 | +# The master toctree document. |
| 36 | +master_doc = 'index' |
30 | 37 |
|
31 | 38 | # Add any Sphinx extension module names here, as strings. They can be
|
32 | 39 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
33 | 40 | # ones.
|
34 |
| -extensions = ['sphinx.ext.githubpages'] |
| 41 | +extensions = [ |
| 42 | +] |
35 | 43 |
|
36 | 44 | # Add any paths that contain templates here, relative to this directory.
|
37 | 45 | templates_path = ['_templates']
|
38 | 46 |
|
39 |
| -# The suffix(es) of source filenames. |
40 |
| -# You can specify multiple suffix as a list of string: |
41 |
| -# |
42 |
| -# source_suffix = '.rst' |
43 |
| -source_suffix = ['.rst', '.md'] |
44 |
| - |
45 |
| -# The master toctree document. |
46 |
| -master_doc = 'index' |
47 |
| - |
48 |
| -# General information about the project. |
49 |
| -project = 'pgloader' |
50 |
| -copyright = '2005-2022, Dimitri Fontaine' |
51 |
| -author = 'Dimitri Fontaine' |
52 |
| - |
53 |
| -# The version info for the project you're documenting, acts as replacement for |
54 |
| -# |version| and |release|, also used in various other places throughout the |
55 |
| -# built documents. |
56 |
| -# |
57 |
| -# The short X.Y version. |
58 |
| -version = '3.6' |
59 |
| -# The full version, including alpha/beta/rc tags. |
60 |
| -release = '3.6.8' |
61 |
| - |
62 |
| -# The language for content autogenerated by Sphinx. Refer to documentation |
63 |
| -# for a list of supported languages. |
64 |
| -# |
65 |
| -# This is also used if you do content translation via gettext catalogs. |
66 |
| -# Usually you set "language" from the command line for these cases. |
67 |
| -language = None |
68 |
| - |
69 | 47 | # List of patterns, relative to source directory, that match files and
|
70 | 48 | # directories to ignore when looking for source files.
|
71 |
| -# This patterns also effect to html_static_path and html_extra_path |
| 49 | +# This pattern also affects html_static_path and html_extra_path. |
72 | 50 | exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
73 | 51 |
|
74 |
| -# The name of the Pygments (syntax highlighting) style to use. |
75 |
| -pygments_style = 'sphinx' |
76 |
| - |
77 |
| -# If true, `todo` and `todoList` produce output, else they produce nothing. |
78 |
| -todo_include_todos = False |
79 |
| - |
80 | 52 |
|
81 | 53 | # -- Options for HTML output ----------------------------------------------
|
82 | 54 |
|
|
86 | 58 | #html_theme = 'alabaster'
|
87 | 59 | html_theme = 'sphinx_rtd_theme'
|
88 | 60 |
|
89 |
| -# Theme options are theme-specific and customize the look and feel of a theme |
90 |
| -# further. For a list of options available for each theme, see the |
91 |
| -# documentation. |
92 |
| -# |
93 |
| -# html_theme_options = {} |
94 |
| -html_theme_options = { |
95 |
| - #'github_user': 'dimitri', |
96 |
| - #'github_repo': 'pgloader', |
97 |
| - #'description': 'your migration companion', |
98 |
| - #'travis_button': True, |
99 |
| - #'show_related': True, |
100 |
| - #'sidebar_collapse': False, |
101 |
| -} |
102 |
| - |
103 | 61 | # Add any paths that contain custom static files (such as style sheets) here,
|
104 | 62 | # relative to this directory. They are copied after the builtin static files,
|
105 | 63 | # so a file named "default.css" will overwrite the builtin "default.css".
|
106 |
| -html_static_path = ['_static'] |
107 |
| - |
108 |
| -# Custom sidebar templates, must be a dictionary that maps document names |
109 |
| -# to template names. |
110 |
| -# |
111 |
| -# This is required for the alabaster theme |
112 |
| -# refs: http://alabaster.readthedocs.io/en/latest/installation.html#sidebars |
113 |
| -html_sidebars = { |
114 |
| - '**': [ |
115 |
| - 'relations.html', # needs 'show_related': True theme option to display |
116 |
| - 'searchbox.html', |
117 |
| - ] |
118 |
| -} |
119 |
| - |
120 |
| - |
121 |
| -# -- Options for HTMLHelp output ------------------------------------------ |
122 |
| - |
123 |
| -# Output file base name for HTML help builder. |
124 |
| -htmlhelp_basename = 'pgloaderdoc' |
| 64 | +#html_static_path = ['_static'] |
125 | 65 |
|
126 | 66 |
|
127 | 67 | # -- Options for LaTeX output ---------------------------------------------
|
|
0 commit comments