mirror of https://github.com/celery/kombu.git
32 lines
938 B
Python
32 lines
938 B
Python
from __future__ import annotations
|
|
|
|
from sphinx_celery import conf
|
|
|
|
globals().update(conf.build_config(
|
|
'kombu', __file__,
|
|
project='Kombu',
|
|
version_dev='5.4',
|
|
version_stable='5.3',
|
|
canonical_url='https://kombu.readthedocs.io/',
|
|
webdomain='kombu.readthedocs.io',
|
|
github_project='celery/kombu',
|
|
author='Ask Solem & contributors',
|
|
author_name='Ask Solem',
|
|
copyright='2009-2019',
|
|
publisher='Celery Project',
|
|
html_logo='images/kombusmall.jpg',
|
|
html_favicon='images/favicon.ico',
|
|
html_prepend_sidebars=['sidebardonations.html'],
|
|
extra_extensions=['sphinx.ext.napoleon'],
|
|
apicheck_ignore_modules=[
|
|
'kombu.entity',
|
|
'kombu.messaging',
|
|
'kombu.asynchronous.aws.ext',
|
|
'kombu.asynchronous.aws.sqs.ext',
|
|
'kombu.transport.qpid_patches',
|
|
'kombu.transport.librabbitmq',
|
|
'kombu.utils',
|
|
'kombu.transport.virtual.base',
|
|
],
|
|
))
|