-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathconf.py
More file actions
53 lines (41 loc) · 1.1 KB
/
conf.py
File metadata and controls
53 lines (41 loc) · 1.1 KB
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
# -*- coding: utf-8 -*-
import sys
import os
import sphinx_rtd_theme
sys.path.insert(0, os.path.abspath('../'))
from saml import __version__ # noqa
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.coverage',
'sphinx.ext.ifconfig',
'sphinx.ext.viewcode',
]
templates_path = ['_templates']
source_suffix = ['.rst']
master_doc = 'index'
project = u'python-saml'
copyright = u'2015, Ryan Leckey'
author = u'Ryan Leckey'
version = __version__
release = version
exclude_patterns = ['_build']
pygments_style = 'sphinx'
todo_include_todos = False
html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
html_static_path = ['_static']
htmlhelp_basename = 'python-samldoc'
latex_elements = {}
latex_documents = [
(master_doc, 'python-saml.tex', u'python-saml Documentation',
u'Ryan Leckey', 'manual'),
]
man_pages = [
(master_doc, 'python-saml', u'python-saml Documentation',
[author], 1)
]
texinfo_documents = [
(master_doc, 'python-saml', u'python-saml Documentation',
author, 'python-saml', 'One line description of project.',
'Miscellaneous'),
]