예제 #1
0
sys.path.append('.')

globals().update(
    conf.build_config(
        '{{ cookiecutter.project_package }}',
        __file__,
        project='{{ cookiecutter.project_name }}',
        # version_dev='2.0',
        # version_stable='1.4',
        canonical_url='http://{{ cookiecutter.project_slug }}.readthedocs.io',
        webdomain='',
        github_project='{{ cookiecutter.github_repo }}',
        copyright='{{ cookiecutter.year }}',
        html_logo='images/logo.png',
        html_favicon='images/favicon.ico',
        html_prepend_sidebars=[],
        include_intersphinx={'python', 'sphinx'},
        extra_extensions=[
            'sphinx.ext.napoleon',
            'sphinx_autodoc_annotation',
            'sphinxcontrib.asyncio',
            'alabaster',
        ],
        extra_intersphinx_mapping={},
        # django_settings='testproj.settings',
        # from pathlib import Path
        # path_additions=[Path.cwd().parent / 'testproj']
        apicheck_ignore_modules=[],
    ))

html_theme = 'alabaster'
html_sidebars = {}
예제 #2
0
globals().update(conf.build_config(
    'faust', __file__,
    project='Faust',
    version_dev='1.1',
    version_stable='1.0',
    canonical_url='https://fauststream.com/en/latest',
    webdomain='',
    github_project='faust-streaming/faust',
    copyright='2017-2020, 2022 Community',
    html_logo='images/logo.png',
    html_favicon='images/favicon.ico',
    html_prepend_sidebars=[],
    include_intersphinx={'sphinx'},
    extra_extensions=[
        'sphinx.ext.napoleon',
        'alabaster',
        'typehints',
        'faustdocs',
    ],
    extra_intersphinx_mapping={
        'aiohttp': ('https://aiohttp.readthedocs.io/en/stable/', None),
        'aiokafka': ('https://aiokafka.readthedocs.io/en/stable/', None),
        'aredis': ('https://aredis.readthedocs.io/en/latest/', None),
        'click': ('https://click.palletsprojects.com/en/7.x/', None),
        'kafka-python': (
            'https://kafka-python.readthedocs.io/en/master/', None),
        'mode': ('https://mode.readthedocs.io/en/latest/', None),
        'mypy': ('https://mypy.readthedocs.io/en/latest/', None),
        'pytest': ('https://pytest.readthedocs.io/en/latest/', None),
        'python': ('https://docs.python.org/dev/', None),
        'rocksdb': ('https://python-rocksdb.readthedocs.io/en/latest/', None),
        'statsd': ('https://statsd.readthedocs.io/en/latest/', None),
        'terminaltables': ('https://robpol86.github.io/terminaltables/', None),
        'uvloop': ('https://uvloop.readthedocs.io', None),
        'venusian': ('https://venusian.readthedocs.io/en/latest/', None),
        'yarl': ('https://yarl.readthedocs.io/en/latest/', None),
    },
    # django_settings='testproj.settings',
    # from pathlib import Path
    # path_additions=[Path.cwd().parent / 'testproj']
    apicheck_ignore_modules=[
        'faust.__main__',
        'faust.app._attached',
        'faust.assignor',
        'faust.cli',
        'faust.models',
        'faust.serializers',
        'faust.types',
        'faust.types._env',
        'faust.utils',
        'faust.utils._iso8601_python',
        r'faust.utils.kafka.*',
        'faust.web',
        r'faust.web.apps.*',
        'faust.web.apps.stats.app',
        'faust.web.apps.router.app',
        'faust'
        'faust.web.drivers',
        r'.*\._cython.*',
    ],
))
예제 #3
0
from sphinx_celery import conf

globals().update(conf.build_config(
    'deux', __file__,
    project='deux',
    canonical_url='http://deux.readthedocs.io',
    webdomain='robinhood.com',
    github_project='robinhood/deux',
    copyright='2016',
    html_logo='images/logo.png',
    html_favicon='images/favicon.ico',
    html_static_path=[],
    include_intersphinx={'python', 'sphinx'},
    django_settings='test_proj.settings',
    apicheck_package='deux',
    apicheck_ignore_modules=[
        'deux.authtoken.tests.*',
        'deux.authtoken.urls',
        'deux.migrations.*',
        'deux.locale.*',
        'deux.oauth2.tests.*',
        'deux.oauth2.urls',
        'deux.tests.*',
        'deux.urls',
        'deux.app_settings',
    ],
    spelling_word_list_filename='spelling/spelling_wordlist.txt',
))

html_theme_path = ['theme']
html_theme = 'deux'
예제 #4
0
파일: conf.py 프로젝트: cloudera/hue
from __future__ import absolute_import, unicode_literals

from sphinx_celery import conf

globals().update(conf.build_config(
    'kombu', __file__,
    project='Kombu',
    version_dev='4.4',
    version_stable='4.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.utils',
        'kombu.transport.virtual.base',
    ],
))
예제 #5
0
 conf.build_config(
     'mode',
     __file__,
     project='Mode',
     # version_dev='2.0',
     # version_stable='1.4',
     canonical_url='http://mode.readthedocs.io',
     webdomain='',
     github_project='ask/mode',
     copyright='2017-2020',
     html_logo='images/logo.png',
     html_favicon='images/favicon.ico',
     html_prepend_sidebars=[],
     include_intersphinx={'python', 'sphinx'},
     extra_extensions=[
         'sphinx.ext.napoleon',
         'sphinx_autodoc_annotation',
         'alabaster',
     ],
     extra_intersphinx_mapping={},
     # django_settings='testproj.settings',
     # from pathlib import Path
     # path_additions=[Path.cwd().parent / 'testproj']
     apicheck_ignore_modules=[
         'mode.loop.eventlet',
         'mode.loop.gevent',
         'mode.loop.uvloop',
         'mode.loop._gevent_loop',
         'mode.utils',
         'mode.utils._py37_contextlib',
         'mode.utils.graphs.formatter',
         'mode.utils.graphs.graph',
         'mode.utils.types',
     ],
 ))
예제 #6
0
import os

from sphinx_celery import conf

globals().update(
    conf.build_config(
        'django_celery_results',
        __file__,
        project='django_celery_results',
        # version_dev='2.0',
        # version_stable='1.4',
        canonical_url='http://django-celery-results.readthedocs.io',
        webdomain='',
        github_project='celery/django-celery-results',
        copyright='2009-2016',
        django_settings='proj.settings',
        include_intersphinx={'python', 'sphinx', 'django', 'celery'},
        path_additions=[os.path.join(os.pardir, 't')],
        extra_extensions=['sphinx.ext.napoleon'],
        html_logo='images/logo.png',
        html_favicon='images/favicon.ico',
        html_prepend_sidebars=[],
        apicheck_ignore_modules=[
            'django_celery_results',
            'django_celery_results.apps',
            'django_celery_results.admin',
            r'django_celery_results.migrations.*',
        ],
    ))
예제 #7
0
파일: conf.py 프로젝트: tchen0123/faust
 conf.build_config(
     'faust',
     __file__,
     project='Faust',
     # version_dev='2.0',
     # version_stable='1.4',
     canonical_url='http://docs.fauststream.com',
     webdomain='',
     github_project='robinhood/faust',
     copyright='2017-2018',
     html_logo='images/logo.png',
     html_favicon='images/favicon.ico',
     html_prepend_sidebars=[],
     include_intersphinx={'python', 'sphinx'},
     extra_extensions=[
         'sphinx.ext.napoleon',
         'sphinxcontrib.asyncio',
         'alabaster',
         'typehints',
         'faustdocs',
     ],
     extra_intersphinx_mapping={
         'aiohttp': ('https://aiohttp.readthedocs.io/en/stable/', None),
         'aiokafka': ('https://aiokafka.readthedocs.io/en/stable/', None),
         'click': ('http://click.pocoo.org/6/', None),
         'mode': ('https://mode.readthedocs.io/en/latest/', None),
         'mypy': ('https://mypy.readthedocs.io/en/latest/', None),
         'rocksdb':
         ('http://python-rocksdb.readthedocs.io/en/latest/', None),
         'terminaltables':
         ('https://robpol86.github.io/terminaltables/', None),
         'venusian': ('http://venusian.readthedocs.io/en/latest/', None),
         'yarl': ('http://yarl.readthedocs.io/en/latest/', None),
     },
     # django_settings='testproj.settings',
     # from pathlib import Path
     # path_additions=[Path.cwd().parent / 'testproj']
     apicheck_ignore_modules=[
         'faust.__main__',
         'faust.app._attached',
         'faust.assignor',
         'faust.cli',
         'faust.cli._env',
         'faust.models',
         'faust.serializers',
         'faust.transport.drivers.confluent',
         'faust.types',
         'faust.utils',
         'faust.utils._iso8601_python',
         r'faust.utils.kafka.*',
         'faust.web',
         r'faust.web.apps.*',
         'faust.web.apps.stats.app',
         'faust.web.apps.router.app',
         'faust'
         'faust.web.drivers',
     ],
 ))
예제 #8
0
파일: conf.py 프로젝트: Elastica/kombu
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=[],
    configure_django_settings={'DEBUG': False},
    apicheck_ignore_modules=[
        'kombu.entity',
        'kombu.messaging',
        'kombu.transport.django.management',
        'kombu.transport.django.management.commands',
        r'kombu.transport.django.migrations.*',
        r'kombu.transport.django.south_migrations.*',
        'kombu.async.aws.ext',
        'kombu.async.aws.sqs.ext',
        'kombu.transport.qpid_patches',
    ],
))
예제 #9
0
파일: conf.py 프로젝트: felixonmars/vine
# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals

from sphinx_celery import conf

globals().update(
    conf.build_config(
        'vine',
        __file__,
        project='Vine',
        description='Python Promises',
        # version_dev='2.0',
        # version_stable='1.0',
        canonical_url='http://vine.readthedocs.org',
        webdomain='celeryproject.org',
        github_project='celery/vine',
        author='Ask Solem & contributors',
        author_name='Ask Solem',
        copyright='2016',
        publisher='Celery Project',
        html_logo='images/celery_128.png',
        html_favicon='images/favicon.ico',
        html_prepend_sidebars=['sidebardonations.html'],
        extra_extensions=[],
        include_intersphinx={'python', 'sphinx'},
        apicheck_ignore_modules=['vine'],
    ))
예제 #10
0
 conf.build_config(
     "celery",
     __file__,
     project="Celery",
     version_dev="4.0",
     version_stable="3.1",
     canonical_url="http://docs.celeryproject.org",
     webdomain="celeryproject.org",
     github_project="celery/celery",
     author="Ask Solem & contributors",
     author_name="Ask Solem",
     copyright="2009-2016",
     publisher="Celery Project",
     html_logo="images/celery_128.png",
     html_favicon="images/favicon.ico",
     html_prepend_sidebars=["sidebardonations.html"],
     extra_extensions=["sphinx.ext.napoleon", "celery.contrib.sphinx", "celerydocs"],
     extra_intersphinx_mapping={"cyanide": ("https://cyanide.readthedocs.io/en/latest", None)},
     apicheck_ignore_modules=[
         "celery.five",
         "celery.__main__",
         "celery.task",
         "celery.task.base",
         "celery.bin",
         "celery.bin.celeryd_detach",
         "celery.contrib",
         r"celery.fixups.*",
         "celery.local",
         "celery.app.base",
         "celery.apps",
         "celery.canvas",
         "celery.concurrency.asynpool",
         "celery.utils.encoding",
         r"celery.utils.static.*",
     ],
 )
예제 #11
0
파일: conf.py 프로젝트: KeyproOy/kombu
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=[],
        apicheck_ignore_modules=[
            'kombu.entity',
            'kombu.messaging',
            'kombu.async.aws.ext',
            'kombu.async.aws.sqs.ext',
            'kombu.transport.qpid_patches',
        ],
    ))
예제 #12
0
# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals

import os

from sphinx_celery import conf

globals().update(conf.build_config(
    'cyanide', __file__,
    project='Cyanide',
    # version_dev='2.0',
    # version_stable='1.4',
    canonical_url='http://cyanide.readthedocs.org',
    webdomain='',
    github_project='celery/cyanide',
    copyright='2013-2016',
    html_logo='images/logo.png',
    html_favicon='images/favicon.ico',
    html_prepend_sidebars=[],
    include_intersphinx={'python', 'sphinx'},
    # django_settings='testproj.settings',
    # path_additions=[os.path.join(os.pardir, 'testproj')],
    apicheck_package='cyanide',
     apicheck_ignore_modules=[
       'cyanide.__main__',
       'cyanide.bin',
       'cyanide.suites',
     ],
))
예제 #13
0
from __future__ import absolute_import, unicode_literals

import os

from sphinx_celery import conf

globals().update(conf.build_config(
    'django_celery_monitor', __file__,
    project='django_celery_monitor',
    version_dev='1.2.0',
    version_stable='1.1.2+dj22fixes',
    canonical_url='http://django-celery-monitor.readthedocs.io',
    webdomain='',
    github_project='jezdez/django-celery-monitor',
    copyright='2009-2017',
    django_settings='proj.settings',
    include_intersphinx={'python', 'sphinx', 'django', 'celery'},
    path_additions=[os.path.join(os.pardir, 'tests')],
    extra_extensions=['sphinx.ext.napoleon'],
    html_logo='images/logo.png',
    html_favicon='images/favicon.ico',
    html_prepend_sidebars=[],
    apicheck_ignore_modules=[
        'django_celery_monitor',
        'django_celery_monitor.apps',
        'django_celery_monitor.admin',
        r'django_celery_monitor.migrations.*',
    ],
    suppress_warnings=['image.nonlocal_uri'],
))
예제 #14
0
# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals

import os

from sphinx_celery import conf

globals().update(
    conf.build_config(
        '{{ cookiecutter.project_slug }}',
        __file__,
        project='{{ cookiecutter.project_name }}',
        # version_dev='2.0',
        # version_stable='1.4',
        canonical_url='http://{{ cookiecutter.project_slug }}.readthedocs.org',
        webdomain='',
        github_project=
        '{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }}',
        copyright='{{ cookiecutter.year }}',
        html_logo='images/logo.png',
        html_favicon='images/favicon.ico',
        html_prepend_sidebars=[],
        include_intersphinx={'python', 'sphinx'},
        # django_settings='testproj.settings',
        # path_additions=[os.path.join(os.pardir, 'testproj')],
        # apicheck_ignore_modules=[
        #   '{{ cookiecutter.project_slug }}',
        # ],
    ))
예제 #15
0
파일: conf.py 프로젝트: celery/case
# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals, print_function

from sphinx_celery import conf

globals().update(conf.build_config(
    'case', __file__,
    project='Case',
    # version_dev='2.0',
    # version_stable='1.0',
    canonical_url='http://case.readthedocs.org',
    webdomain='celeryproject.org',
    github_project='celery/case',
    author='Ask Solem & contributors',
    author_name='Ask Solem',
    copyright='2016',
    publisher='Celery Project',
    html_logo='images/celery_128.png',
    html_favicon='images/favicon.ico',
    html_prepend_sidebars=['sidebardonations.html'],
    extra_extensions=[],
    include_intersphinx={'python', 'sphinx'},
))
예제 #16
0
 conf.build_config(
     "mode",
     __file__,
     project="Mode",
     # version_dev='2.0',
     # version_stable='1.4',
     canonical_url="http://mode-streaming.readthedocs.io",
     webdomain="",
     github_project="faust-streaming/mode",
     copyright="2017-2020",
     html_logo="images/logo.png",
     html_favicon="images/favicon.ico",
     html_prepend_sidebars=[],
     include_intersphinx={"python", "sphinx"},
     extra_extensions=[
         "sphinx.ext.napoleon",
         "sphinx_autodoc_annotation",
         "alabaster",
     ],
     extra_intersphinx_mapping={},
     # django_settings='testproj.settings',
     # from pathlib import Path
     # path_additions=[Path.cwd().parent / 'testproj']
     apicheck_ignore_modules=[
         "mode.loop.eventlet",
         "mode.loop.gevent",
         "mode.loop.uvloop",
         "mode.loop._gevent_loop",
         "mode.utils",
         "mode.utils._py37_contextlib",
         "mode.utils.graphs.formatter",
         "mode.utils.graphs.graph",
         "mode.utils.types",
     ],
 ))
예제 #17
0
파일: conf.py 프로젝트: alanjds/py-amqp
# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals

from sphinx_celery import conf

globals().update(conf.build_config(
    'amqp', __file__,
    project='py-amqp',
    description='Python Promises',
    version_dev='2.0',
    version_stable='1.4',
    canonical_url='https://amqp.readthedocs.io',
    webdomain='celeryproject.org',
    github_project='celery/py-amqp',
    author='Ask Solem & contributors',
    author_name='Ask Solem',
    copyright='2016',
    publisher='Celery Project',
    html_logo='images/celery_128.png',
    html_favicon='images/favicon.ico',
    html_prepend_sidebars=['sidebardonations.html'],
    extra_extensions=[],
    include_intersphinx={'python', 'sphinx'},
    apicheck_package='amqp',
    apicheck_ignore_modules=['amqp'],
))
예제 #18
0
# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals

import os

from sphinx_celery import conf

globals().update(conf.build_config(
    'django_celery_beat', __file__,
    project='django_celery_beat',
    # version_dev='2.0',
    # version_stable='1.4',
    canonical_url='http://django-celery-beat.readthedocs.io',
    webdomain='',
    github_project='celery/django-celery-beat',
    copyright='2016',
    django_settings='proj.settings',
    include_intersphinx={'python', 'sphinx', 'django', 'celery'},
    path_additions=[os.path.join(os.pardir, 't')],
    html_logo='images/logo.png',
    html_favicon='images/favicon.ico',
    html_prepend_sidebars=[],
    apicheck_ignore_modules=[
        'django_celery_beat.apps',
        r'django_celery_beat.migrations.*',
    ],
))
예제 #19
0
파일: conf.py 프로젝트: luoxingbo/celery
# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals

from sphinx_celery import conf

globals().update(conf.build_config(
    'celery', __file__,
    project='Celery',
    version_dev='4.0',
    version_stable='3.1',
    canonical_url='http://docs.celeryproject.org',
    webdomain='celeryproject.org',
    github_project='celery/celery',
    author='Ask Solem & contributors',
    author_name='Ask Solem',
    copyright='2009-2016',
    publisher='Celery Project',
    html_logo='images/celery_128.png',
    html_favicon='images/favicon.ico',
    html_prepend_sidebars=['sidebardonations.html'],
    extra_extensions=[
        'celery.contrib.sphinx',
        'celerydocs',
    ],
))
예제 #20
0
 conf.build_config(
     'thorn',
     __file__,
     project='Thorn',
     # version_dev='2.0',
     # version_stable='1.4',
     canonical_url='http://thorn.readthedocs.io',
     webdomain='robinhood.com',
     github_project='robinhood/thorn',
     copyright='2016',
     html_logo='images/logo.png',
     html_favicon='images/favicon.ico',
     extra_extensions=[
         'sphinx.ext.napoleon',
         'celery.contrib.sphinx',
     ],
     include_intersphinx={'python', 'sphinx', 'django', 'celery'},
     extra_intersphinx_mapping={
         'requests': ('http://requests.readthedocs.org/en/latest/', None),
     },
     html_prepend_sidebars=['sidebargithub.html'],
     django_settings='proj.settings',
     path_additions=[os.path.join(os.pardir, 't')],
     apicheck_package='thorn',
     apicheck_ignore_modules=[
         'thorn.django',
         'thorn.django.admin',
         'thorn.django.apps',
         'thorn.django.tasks',
         'thorn.django.rest_framework',
         'thorn.utils',
         'thorn.utils.django.*',
         'thorn.django.migrations.*',
         'thorn.funtests',
         'thorn.funtests.celery',
         'thorn._state',
         'thorn.generic',
     ],
 ))
예제 #21
0
 conf.build_config(
     'celery',
     __file__,
     project='Celery',
     version_dev='4.0',
     version_stable='3.1',
     canonical_url='http://docs.celeryproject.org',
     webdomain='celeryproject.org',
     github_project='celery/celery',
     author='Ask Solem & contributors',
     author_name='Ask Solem',
     copyright='2009-2016',
     publisher='Celery Project',
     html_logo='images/celery_128.png',
     html_favicon='images/favicon.ico',
     html_prepend_sidebars=['sidebardonations.html'],
     extra_extensions=[
         'sphinx.ext.napoleon',
         'celery.contrib.sphinx',
         'celerydocs',
     ],
     extra_intersphinx_mapping={
         'cyanide': ('https://cyanide.readthedocs.io/en/latest', None),
     },
     apicheck_ignore_modules=[
         'celery.five',
         'celery.__main__',
         'celery.task',
         'celery.contrib.testing',
         'celery.contrib.testing.tasks',
         'celery.task.base',
         'celery.bin',
         'celery.bin.celeryd_detach',
         'celery.contrib',
         r'celery.fixups.*',
         'celery.local',
         'celery.app.base',
         'celery.apps',
         'celery.canvas',
         'celery.concurrency.asynpool',
         'celery.utils.encoding',
         r'celery.utils.static.*',
     ],
 ))
예제 #22
0
파일: conf.py 프로젝트: fcurella/thorn
globals().update(conf.build_config(
    'thorn', __file__,
    project='Thorn',
    # version_dev='2.0',
    # version_stable='1.4',
    canonical_url='http://thorn.readthedocs.io',
    webdomain='robinhood.com',
    github_project='robinhood/thorn',
    copyright='2016',
    html_logo='images/logo.png',
    html_favicon='images/favicon.ico',
    extra_extensions=[
        'sphinx.ext.napoleon',
        'celery.contrib.sphinx',
    ],
    include_intersphinx={'python', 'sphinx', 'django', 'celery'},
    extra_intersphinx_mapping={
        'requests': ('http://requests.readthedocs.org/en/latest/', None),
    },
    html_prepend_sidebars=['sidebargithub.html'],
    django_settings='proj.settings',
    path_additions=[os.path.join(os.pardir, 't')],
    apicheck_package='thorn',
    apicheck_ignore_modules=[
        'thorn.django',
        'thorn.django.admin',
        'thorn.django.apps',
        'thorn.django.tasks',
        'thorn.django.rest_framework',
        'thorn.utils',
        'thorn.utils.django.*',
        'thorn.django.migrations.*',
        'thorn.funtests',
        'thorn.funtests.celery',
        'thorn._state',
        'thorn.generic',
    ],
))
예제 #23
0
globals().update(conf.build_config(
    'celery', __file__,
    project='Celery',
    version_dev='4.0',
    version_stable='3.1',
    canonical_url='http://docs.celeryproject.org',
    webdomain='celeryproject.org',
    github_project='celery/celery',
    author='Ask Solem & contributors',
    author_name='Ask Solem',
    copyright='2009-2016',
    publisher='Celery Project',
    html_logo='images/celery_128.png',
    html_favicon='images/favicon.ico',
    html_prepend_sidebars=['sidebardonations.html'],
    extra_extensions=[
        'celery.contrib.sphinx',
        'celerydocs',
    ],
    extra_intersphinx_mapping={
        'cyanide': ('https://cyanide.readthedocs.io/en/latest', None),
    },
    apicheck_ignore_modules=[
        'celery.five',
        'celery.__main__',
        'celery.task',
        'celery.task.base',
        'celery.bin',
        'celery.bin.celeryd_detach',
        'celery.contrib',
        r'celery.fixups.*',
        'celery.local',
        'celery.app.base',
        'celery.apps',
        'celery.canvas',
        'celery.concurrency.asynpool',
        'celery.utils.encoding',
    ],
))
예제 #24
0
import os

from sphinx_celery import conf

globals().update(
    conf.build_config(
        'api_server',
        __file__,
        project='api_server',
        # version_dev='2.0',
        # version_stable='1.4',
        canonical_url='http://api_server.readthedocs.org',
        webdomain='',
        github_project='admindaspanel/api_server',
        copyright='2016',
        html_logo='images/logo.png',
        html_favicon='images/favicon.ico',
        html_prepend_sidebars=[],
        include_intersphinx={'python', 'sphinx'},
        # django_settings='testproj.settings',
        # path_additions=[os.path.join(os.pardir, 'testproj')],
        # apicheck_ignore_modules=[
        #   'api_server',
        # ],
    ))

settings = {}
ignored_settings = {
    # Deprecated broker settings (replaced by broker_url)
    'broker_host',
}
예제 #25
0
파일: conf.py 프로젝트: zhangjpn/kombu
from sphinx_celery import conf

globals().update(
    conf.build_config(
        'kombu',
        __file__,
        project='Kombu',
        version_dev='5.1',
        version_stable='5.0',
        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.utils',
            'kombu.transport.virtual.base',
        ],
    ))
예제 #26
0
# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals

import os

from sphinx_celery import conf

globals().update(conf.build_config(
    '{{ cookiecutter.project_slug }}', __file__,
    project='{{ cookiecutter.project_name }}',
    # version_dev='2.0',
    # version_stable='1.4',
    canonical_url='http://{{ cookiecutter.project_slug }}.readthedocs.org',
    webdomain='',
    github_project='{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }}',
    copyright='{{ cookiecutter.year }}',
    html_logo='images/logo.png',
    html_favicon='images/favicon.ico',
    html_prepend_sidebars=[],
    include_intersphinx={'python', 'sphinx'},
    # django_settings='testproj.settings',
    # path_additions=[os.path.join(os.pardir, 'testproj')],
    # apicheck_ignore_modules=[
    #   '{{ cookiecutter.project_slug }}',
    # ],
))