mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 09:02:12 +00:00
15 lines
504 B
Python
Executable file
15 lines
504 B
Python
Executable file
# -*- coding: utf-8 -*-
|
|
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.pngmath', 'sphinx.ext.mathjax', 'sphinx.ext.ifconfig']
|
|
source_suffix = '.rst'
|
|
master_doc = 'index'
|
|
project = 'Sylius'
|
|
copyright = u'2011-2012, Paweł Jędrzejewski'
|
|
version = ''
|
|
release = ''
|
|
exclude_patterns = []
|
|
html_theme = 'default'
|
|
htmlhelp_basename = 'Syliusdoc'
|
|
man_pages = [
|
|
('index', 'sylius', u'Sylius Documentation',
|
|
[u'Paweł Jędrzejewski'], 1)
|
|
]
|