2022-04-14 11:02:52 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2016-04-07 22:59:26 +00:00
|
|
|
from sphinx_celery import conf
|
|
|
|
|
|
|
|
globals().update(conf.build_config(
|
|
|
|
'kombu', __file__,
|
|
|
|
project='Kombu',
|
2024-01-12 19:30:50 +00:00
|
|
|
version_dev='5.4',
|
2023-11-28 12:58:50 +00:00
|
|
|
version_stable='5.3',
|
2019-01-13 20:26:57 +00:00
|
|
|
canonical_url='https://kombu.readthedocs.io/',
|
|
|
|
webdomain='kombu.readthedocs.io',
|
2016-04-07 22:59:26 +00:00
|
|
|
github_project='celery/kombu',
|
|
|
|
author='Ask Solem & contributors',
|
|
|
|
author_name='Ask Solem',
|
2019-02-06 16:12:08 +00:00
|
|
|
copyright='2009-2019',
|
2016-04-07 22:59:26 +00:00
|
|
|
publisher='Celery Project',
|
|
|
|
html_logo='images/kombusmall.jpg',
|
|
|
|
html_favicon='images/favicon.ico',
|
|
|
|
html_prepend_sidebars=['sidebardonations.html'],
|
2016-07-16 18:51:23 +00:00
|
|
|
extra_extensions=['sphinx.ext.napoleon'],
|
2016-04-08 21:03:29 +00:00
|
|
|
apicheck_ignore_modules=[
|
|
|
|
'kombu.entity',
|
|
|
|
'kombu.messaging',
|
2018-03-19 17:28:43 +00:00
|
|
|
'kombu.asynchronous.aws.ext',
|
|
|
|
'kombu.asynchronous.aws.sqs.ext',
|
2016-04-08 21:03:29 +00:00
|
|
|
'kombu.transport.qpid_patches',
|
2021-04-11 11:41:36 +00:00
|
|
|
'kombu.transport.librabbitmq',
|
2016-07-16 20:33:32 +00:00
|
|
|
'kombu.utils',
|
2016-08-23 18:50:24 +00:00
|
|
|
'kombu.transport.virtual.base',
|
2016-04-08 21:03:29 +00:00
|
|
|
],
|
2016-04-07 22:59:26 +00:00
|
|
|
))
|