123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import sys
- import os
- sys.path.append(os.path.join(os.pardir, "tests"))
- import celery
- extensions = ['sphinx.ext.autodoc', 'sphinx.ext.coverage']
- templates_path = ['.templates']
- source_suffix = '.rst'
- master_doc = 'index'
- project = u'Celery'
- copyright = u'2009, Ask Solem'
- version = ".".join(map(str, celery.VERSION[0:2]))
- release = celery.version_with_meta()
- exclude_trees = ['.build']
- add_function_parentheses = True
- pygments_style = 'trac'
- html_static_path = ['.static']
- html_use_smartypants = True
- html_use_modindex = True
- html_use_index = True
- latex_documents = [
- ('index', 'Celery.tex', ur'Celery Documentation',
- ur'Ask Solem', 'manual'),
- ]
- html_theme = "classy"
- html_theme_path = ["_theme"]
|