File: conf.py

package info (click to toggle)
vine 5.1.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 388 kB
  • sloc: python: 877; makefile: 314; sh: 63
file content (22 lines) | stat: -rw-r--r-- 681 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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='https://vine.readthedocs.io',
    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'],
))