summaryrefslogtreecommitdiffstats
path: root/user/conf.py
blob: 7a45a97198cf52b94e4ab7170925fac8012d2191 (plain) (blame)
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
import sys, os
sys.path.append(os.path.abspath('../common/'))

from conf import *

version = '4.11.0'
release = '4.11.0'

project = "RTEMS User Manual"

exclude_patterns = ['config/build.rst',
                    'config/runtime.rst',
                    'start/depend.rst',
                    'start/transition.rst',
                    'start/releases.rst',
                    'start/development.rst',
                    'start/installation.rst',
                    'start/windows.rst',
                    'test/create.rst',
                    'test/running.rst',
                    'tools/build.rst',
                    'tools/simulation.rst',
                    'waf/index.rst']

latex_documents = [
	('index', 'user.tex', u'RTEMS User Manual', u'RTEMS Documentation Project', 'manual'),
]