conf.py 713 B

12345678910111213141516171819202122232425
  1. # -*- coding: utf-8 -*-
  2. from __future__ import absolute_import, unicode_literals
  3. from sphinx_celery import conf
  4. globals().update(conf.build_config(
  5. 'celery', __file__,
  6. project='Celery',
  7. version_dev='4.0',
  8. version_stable='3.1',
  9. canonical_url='http://docs.celeryproject.org',
  10. webdomain='celeryproject.org',
  11. github_project='celery/celery',
  12. author='Ask Solem & contributors',
  13. author_name='Ask Solem',
  14. copyright='2009-2016',
  15. publisher='Celery Project',
  16. html_logo='images/celery_128.png',
  17. html_favicon='images/favicon.ico',
  18. html_prepend_sidebars=['sidebardonations.html'],
  19. extra_extensions=[
  20. 'celery.contrib.sphinx',
  21. 'celerydocs',
  22. ],
  23. ))