aboutsummaryrefslogtreecommitdiff
blob: 80de842fd8fd00e804227b7cc6dd80587ff365f4 (plain) (blame)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# -*- coding: utf-8 -*-

import alagitpull

alagitpull.projects = [

]

extensions = [
    'sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx',
    'sphinx.ext.todo', 'sphinx.ext.viewcode', 'alagitpull'
]

html_title = 'Hello World'
language='zh-Hans-CN'
templates_path = ['_templates']

source_suffix = '.rst'

master_doc = 'index'

project = u''
copyright = u'2013 - 2020, clarkzjw'  # NOQA

version = '0.0'
release = '0.0'

exclude_patterns = ['_build', '.venv', 'README.rst']

pygments_style = ''

html_theme_path = [alagitpull.get_path()]
html_theme = 'alagitpull'
html_favicon = '_static/favicon.ico'
html_theme_options = {
}
html_sidebars = {
    '**': [
        'about.html',
        'relations.html',
    ]
}

html_static_path = ['_static']

htmlhelp_basename = 'confuciangentlemansclubdoc'

latex_elements = {
}

latex_documents = [
    ('index', 'confuciangentlemansclub.tex', u'confucian gentleman\'s', 'manual'),
]

man_pages = [
    ('index', 'confuciangentlemansclub', u'confucian gentleman\'s club', 1)
]

texinfo_documents = [
    ('index', 'confuciangentlemansclub', u'confucian gentleman\'s club', 'confuciangentlemansclub', 'Scribe.',
     'Miscellaneous'),
]
Powered by cgit v1.2.3 (git 2.41.0)