comparison doc/conf.py @ 191:633a25df450e

molko-js: miscellaneous fixes While here, import sphinx as experimental documentation.
author David Demelier <markand@malikania.fr>
date Sat, 07 Nov 2020 15:40:34 +0100
parents
children 617fda414bbb
comparison
equal deleted inserted replaced
190:5dc57029b9f1 191:633a25df450e
1 #
2 # conf.py -- sphinx documentation configuration
3 #
4 # Copyright (c) 2020 David Demelier <markand@malikania.fr>
5 #
6 # Permission to use, copy, modify, and/or distribute this software for any
7 # purpose with or without fee is hereby granted, provided that the above
8 # copyright notice and this permission notice appear in all copies.
9 #
10 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #
18
19 # Project information.
20 project = "Molko Javascript API"
21 copyright = "2020, David Demelier"
22 author = "David Demelier"
23 release = '0.1.0'
24
25 # General settings.
26 templates_path = ["_templates"]
27 exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
28
29 # HTML output.
30 html_theme = "sphinx_rtd_theme"
31 html_static_path = ["_static"]