kombu/docs/conf.py

32 lines
938 B
Python
Raw Normal View History

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',
version_dev='5.4',
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',
'kombu.asynchronous.aws.ext',
'kombu.asynchronous.aws.sqs.ext',
2016-04-08 21:03:29 +00:00
'kombu.transport.qpid_patches',
'kombu.transport.librabbitmq',
'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
))