22 lines
725 B
Python
22 lines
725 B
Python
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
|||
|
|
# this repository contains the full copyright notices and license terms.
|
||
|
|
|
||
|
|
project = 'Account DO'
|
||
|
|
release = version = '8.0'
|
||
|
|
author = 'Solutema'
|
||
|
|
copyright = '2026, Solutema'
|
||
|
|
default_role = 'ref'
|
||
|
|
highlight_language = 'none'
|
||
|
|
extensions = [
|
||
|
|
'sphinx.ext.intersphinx',
|
||
|
|
]
|
||
|
|
intersphinx_mapping = {
|
||
|
|
'trytond': ('https://docs.tryton.org/projects/server/en/8.0/', None),
|
||
|
|
'account': (
|
||
|
|
'https://docs.tryton.org/projects/modules-account/en/8.0/', None),
|
||
|
|
'company': (
|
||
|
|
'https://docs.tryton.org/projects/modules-company/en/8.0/', None),
|
||
|
|
'currency': (
|
||
|
|
'https://docs.tryton.org/projects/modules-currency/en/8.0/', None),
|
||
|
|
}
|