Add initial Python bindings documentation
[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
9project = 'Babeltrace 2 Python bindings'
10copyright = '2020, EfficiOS, Inc'
11author = 'EfficiOS, Inc'
12release = bt2.__version__
13version = re.match(r'^\d+\.\d+', release).group(0)
14
15# index
16master_doc = 'index'
17
18# extensions
19extensions = ['bt2sphinxurl']
20
21# theme
22html_theme = 'alabaster'
This page took 0.023325 seconds and 4 git commands to generate.