File: conf.py

package info (click to toggle)
babeltrace2 2.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 42,660 kB
  • sloc: cpp: 106,162; ansic: 78,276; python: 27,115; sh: 9,053; makefile: 1,807; xml: 46
file content (23 lines) | stat: -rw-r--r-- 412 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# SPDX-License-Identifier: MIT
#
# Copyright (c) 2020 Philippe Proulx <pproulx@efficios.com>

import re

import bt2

# project
project = "Babeltrace 2 Python bindings"
copyright = "2020, EfficiOS, Inc"
author = "EfficiOS, Inc"
release = bt2.__version__
version = re.match(r"^\d+\.\d+", release).group(0)

# index
master_doc = "index"

# extensions
extensions = ["bt2sphinxurl"]

# theme
html_theme = "alabaster"