Skip to content

Commit 9011fcd

Browse files
committed
Clean-up docs/conf.py (remove old cruft).
1 parent 626f437 commit 9011fcd

File tree

1 file changed

+14
-74
lines changed

1 file changed

+14
-74
lines changed

docs/conf.py

Lines changed: 14 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -21,62 +21,34 @@
2121
# import sys
2222
# sys.path.insert(0, os.path.abspath('.'))
2323

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'
2432

2533
# -- General configuration ------------------------------------------------
2634

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'
3037

3138
# Add any Sphinx extension module names here, as strings. They can be
3239
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
3340
# ones.
34-
extensions = ['sphinx.ext.githubpages']
41+
extensions = [
42+
]
3543

3644
# Add any paths that contain templates here, relative to this directory.
3745
templates_path = ['_templates']
3846

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-
6947
# List of patterns, relative to source directory, that match files and
7048
# 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.
7250
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
7351

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-
8052

8153
# -- Options for HTML output ----------------------------------------------
8254

@@ -86,42 +58,10 @@
8658
#html_theme = 'alabaster'
8759
html_theme = 'sphinx_rtd_theme'
8860

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-
10361
# Add any paths that contain custom static files (such as style sheets) here,
10462
# relative to this directory. They are copied after the builtin static files,
10563
# 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']
12565

12666

12767
# -- Options for LaTeX output ---------------------------------------------

0 commit comments

Comments
 (0)