Remove `skip-string-normalization` in Python formatter config
[babeltrace.git] / doc / bindings / python / source / conf.py
CommitLineData
ba64dfcc
SM
1# SPDX-License-Identifier: MIT
2#
3# Copyright (c) 2020 Philippe Proulx <pproulx@efficios.com>
4
5import bt2
6import re
7
8# project
f5567ea8
FD
9project = "Babeltrace 2 Python bindings"
10copyright = "2020, EfficiOS, Inc"
11author = "EfficiOS, Inc"
ba64dfcc 12release = bt2.__version__
f5567ea8 13version = re.match(r"^\d+\.\d+", release).group(0)
ba64dfcc
SM
14
15# index
f5567ea8 16master_doc = "index"
ba64dfcc
SM
17
18# extensions
f5567ea8 19extensions = ["bt2sphinxurl"]
ba64dfcc
SM
20
21# theme
f5567ea8 22html_theme = "alabaster"
This page took 0.02728 seconds and 4 git commands to generate.