blob: 0ad4db210e3fe51721f9afbe23caba257e95f7a1 (
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
|
# -*- coding: utf-8 -*-
import sys, os
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.coverage']
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
project = u'python-reddwarfclient'
copyright = u'2012, OpenStack'
version = '1.0'
release = '1.0'
exclude_trees = []
pygments_style = 'sphinx'
html_theme = 'default'
html_static_path = ['_static']
htmlhelp_basename = 'python-reddwarfclientdoc'
latex_documents = [
('index', 'python-reddwarfclient.tex', u'python-reddwarfclient Documentation',
u'OpenStack', 'manual'),
]
|