-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
64 lines (41 loc) · 1.14 KB
/
conf.py
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
63
64
#!/usr/bin/env python3
import sys
import os
import sphinx_readable_theme
sys.path.insert(0, os.path.abspath('..'))
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.intersphinx',
]
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
project = 'typecaster'
copyright = '2016, Neil Bedi'
author = 'Neil Bedi'
version = '0.1.0'
release = '0.1.0'
language = None
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
pygments_style = 'sphinx'
todo_include_todos = False
html_theme = 'readable'
html_theme_path = [sphinx_readable_theme.get_html_theme_path()]
html_static_path = ['_static']
htmlhelp_basename = 'typecasterdoc'
latex_elements = {}
latex_documents = [
(master_doc, 'typecaster.tex', 'typecaster Documentation',
'Neil Bedi', 'manual'),
]
man_pages = [
(master_doc, 'typecaster', 'typecaster Documentation',
[author], 1)
]
texinfo_documents = [
(master_doc, 'typecaster', 'typecaster Documentation',
author, 'typecaster', 'One line description of project.',
'Miscellaneous'),
]
intersphinx_mapping = {'https://docs.python.org/': None}
autodoc_member_order = 'bysource'