12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import sys
- import os
- sys.path.append("../celery")
- sys.path.append("../tests")
- import settings
- from django.core.management import setup_environ
- from django.conf import settings as dsettings
- setup_environ(settings)
- dsettings.configure()
- import celery
- sys.path.append(os.path.join(os.path.dirname(__file__), "_ext"))
- extensions = ['sphinx.ext.autodoc', 'sphinx.ext.coverage', 'djangodocs']
- 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 = "ADCTheme"
- html_theme_path = ["_theme"]
|