mirror of
https://github.com/adrienverge/yamllint.git
synced 2024-12-01 11:29:08 -06:00
43 lines
946 B
Python
43 lines
946 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'Adrien Vergé'], 1)
|
|
]
|