1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- import sys
- import os
- os.environ["GEVENT_NOPATCH"] = "yes"
- os.environ["EVENTLET_NOPATCH"] = "yes"
- this = os.path.dirname(os.path.abspath(__file__))
- sys.path.append(os.path.join(os.pardir, "tests"))
- sys.path.append(os.path.join(this, "_ext"))
- import celery
- extensions = ['sphinx.ext.autodoc',
- 'sphinx.ext.coverage',
- 'sphinx.ext.pngmath',
- 'sphinxcontrib.issuetracker',
- 'celerydocs']
- templates_path = ['.templates']
- source_suffix = '.rst'
- master_doc = 'index'
- project = u'Celery'
- copyright = u'2009-2010, Ask Solem & contributors'
- version = ".".join(map(str, celery.VERSION[0:2]))
- release = celery.__version__
- 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 = "celery"
- html_theme_path = ["_theme"]
- html_sidebars = {
- 'index': ['sidebarintro.html', 'sourcelink.html', 'searchbox.html'],
- '**': ['sidebarlogo.html', 'relations.html',
- 'sourcelink.html', 'searchbox.html'],
- }
- issuetracker = "github"
- issuetracker_user = "ask"
- issuetracker_project = "celery"
- issuetracker_issue_pattern = r'[Ii]ssue #(\d+)'
|