forked from larsmans/python-pcl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
conf.py
37 lines (26 loc) · 873 Bytes
/
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
# -*- coding: utf-8 -*-
# ensure that we use the local pcl (and not the system copy) to document
import sys, os
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
import pcl
assert pcl.PointCloud.__doc__ is not None
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.autosummary']
needs_sphinx = '1.1'
autodoc_docstring_signature = True
# dont create empty templates and static dirs
templates_path = ['.']
html_static_path = ['.']
source_suffix = '.rst'
master_doc = 'readme'
# General information about the project.
project = u'python-pcl'
copyright = u'2013, John Stowers'
version = '1.0'
release = '1.0'
exclude_patterns = ['build']
pygments_style = 'sphinx'
html_theme = 'haiku'
htmlhelp_basename = 'python-pcldoc'
html_logo = 'pcl_logo.png'
html_title = 'Python Bindings to the Point Cloud Library'
html_short_title = '%s v%s' % (project, version)