mirror of https://github.com/celery/kombu.git
30 lines
847 B
Python
30 lines
847 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import absolute_import, unicode_literals
|
|
|
|
from sphinx_celery import conf
|
|
|
|
globals().update(conf.build_config(
|
|
'kombu', __file__,
|
|
project='Kombu',
|
|
version_dev='4.0',
|
|
version_stable='3.0',
|
|
canonical_url='http://docs.kombu.me',
|
|
webdomain='kombu.me',
|
|
github_project='celery/kombu',
|
|
author='Ask Solem & contributors',
|
|
author_name='Ask Solem',
|
|
copyright='2009-2016',
|
|
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.async.aws.ext',
|
|
'kombu.async.aws.sqs.ext',
|
|
'kombu.transport.qpid_patches',
|
|
],
|
|
))
|