summaryrefslogtreecommitdiff
path: root/docs/source/conf.py
blob: 0a4b3ffe262709eaa23be24fe5ceafc8311934f3 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import sys, os

sys.path.insert(0, os.path.abspath('../../xnt'))

import xnt.version

extensions = ['sphinx.ext.autodoc',
              'sphinx.ext.todo',
              'sphinx.ext.coverage',
              'sphinx.ext.intersphinx']

templates_path = []

source_suffix = '.rst'

master_doc = 'index'

project = u'Xnt'
copyright = u'2013, Kenny Ballou'

version = '.'.join(map(str, xnt.version.__version_info__[:2]))
release = xnt.version.__version__

exclude_patterns = []

pygments_style = 'sphinx'

html_theme = 'default'

html_static_path = []

htmlhelp_basename = 'Xntdoc'


latex_elements = {
}

latex_documents = [
  ('index', 'Xnt.tex', u'Xnt Documentation',
   u'Kenny Ballou', 'manual'),
]

man_pages = [
    ('index', 'xnt', u'Xnt Documentation',
     [u'Kenny Ballou'], 1)
]
texinfo_documents = [
  ('index', 'Xnt', u'Xnt Documentation',
   u'Kenny Ballou', 'Xnt', 'A wrapper build tool',
   'Miscellaneous'),
]