1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# -*- coding: utf-8 -*-
from sphinx_intl import __version__
# -- Project information -----------------------------------------------------
project = 'sphinx-intl'
copyright = 'Sphinx team'
author = 'Sphinx team'
version = release = __version__
# -- General configuration ---------------------------------------------------
extensions = [
"sphinx_click",
]
source_suffix = '.rst'
master_doc = 'index'
language = 'en'
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
pygments_style = 'sphinx'
# -- Options for HTML output -------------------------------------------------
html_theme = 'sphinx_rtd_theme'
# -- Options for sphinx-intl example
locale_dirs = ['locale/'] # po files will be created in this directory
gettext_compact = False # optional: avoid file concatenation in sub directories.
|