comparison doc/conf.py @ 1606:e412712bef95

doc: fix path issue: Doc task in Libervia Website was failing due to path issue. This patch fixes it.
author Goffi <goffi@goffi.org>
date Thu, 30 May 2024 23:52:02 +0200
parents c2569408fa35
children
comparison
equal deleted inserted replaced
1605:9cde31a21a9b 1606:e412712bef95
10 10
11 # If extensions (or modules to document with autodoc) are in another directory, 11 # If extensions (or modules to document with autodoc) are in another directory,
12 # add these directories to sys.path here. If the directory is relative to the 12 # add these directories to sys.path here. If the directory is relative to the
13 # documentation root, use os.path.abspath to make it absolute, like shown here. 13 # documentation root, use os.path.abspath to make it absolute, like shown here.
14 # 14 #
15 # import os 15 import os
16 # import sys 16 import sys
17 # sys.path.insert(0, os.path.abspath('.')) 17 sys.path.insert(0, os.path.abspath('..'))
18 from libervia.web import __version__ 18 from libervia.web import __version__
19 19
20 20
21 # -- Project information ----------------------------------------------------- 21 # -- Project information -----------------------------------------------------
22 22
23 project = u'Libervia Web' 23 project = u'Libervia Web'
24 copyright = u'2019-2023 Jérôme Poisson' 24 copyright = u'2019-2024 Jérôme Poisson'
25 author = u'Jérôme Poisson' 25 author = u'Jérôme Poisson'
26 26
27 version = __version__ 27 version = __version__
28 28
29 29