blob: a6e65deb4eece680c2227c115c5d2ca6a54c8443 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# -*- coding: utf-8 -*-
import os
# -- Project information -----------------------------------------------------
project = 'newtype'
copyright = '2023, Felix Morgner'
author = 'Felix Morgner'
version = '2.0'
release = '2.0.0'
# -- General configuration ---------------------------------------------------
master_doc = 'index'
extensions = [
'sphinx.ext.todo',
'sphinx.ext.githubpages',
]
highlight_language = 'c++'
pygments_style = 'tango'
exclude_patterns = []
numfig = True
# -- Options for HTML output -------------------------------------------------
html_theme = 'haiku'
html_theme_options = {
}
# -- Options for manual page output -------------------------------------------------
man_pages = [
(
"index",
"newtype",
"A library of types and functions to create strong type aliases",
["Felix Morgner <felix.morgner@gmail.com>"],
3,
),
]
|