rtems-docs/user/conf.py
Sebastian Huber 6f110ccf6b build: Prepend project common path
This avoids conflicts with standard packages such as PIL (Python Imaging
Library).
2019-02-08 09:43:16 +01:00

15 lines
250 B
Python

import sys, os
sys.path.insert(0, os.path.abspath('../common/'))
from conf import *
project = "RTEMS User Manual"
latex_documents = [
('index',
'user.tex',
u'RTEMS User Manual',
u'RTEMS Documentation Project',
'manual'),
]