You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
974 B
Python
44 lines
974 B
Python
# -*- coding: utf-8 -*-
|
|
# yamllint documentation build configuration file, created by
|
|
# sphinx-quickstart on Thu Jan 21 21:18:52 2016.
|
|
|
|
import sys
|
|
import os
|
|
|
|
sys.path.insert(0, os.path.abspath('..')) # noqa
|
|
|
|
from yamllint import __copyright__, APP_NAME, APP_VERSION
|
|
|
|
# -- General configuration ------------------------------------------------
|
|
|
|
extensions = [
|
|
'sphinx.ext.autodoc',
|
|
]
|
|
|
|
source_suffix = '.rst'
|
|
|
|
master_doc = 'index'
|
|
|
|
project = APP_NAME
|
|
copyright = __copyright__
|
|
|
|
version = APP_VERSION
|
|
release = APP_VERSION
|
|
|
|
pygments_style = 'sphinx'
|
|
|
|
# -- Options for HTML output ----------------------------------------------
|
|
|
|
html_theme = 'default'
|
|
|
|
htmlhelp_basename = 'yamllintdoc'
|
|
|
|
# -- Options for manual page output ---------------------------------------
|
|
|
|
# One entry per manual page. List of tuples
|
|
# (source start file, name, description, authors, manual section).
|
|
man_pages = [
|
|
('index', 'yamllint', u'yamllint Documentation',
|
|
[u'Adrien Vergé'], 1)
|
|
]
|