]> jfr.im git - yt-dlp.git/blame - docs/conf.py
[skip travis] renaming
[yt-dlp.git] / docs / conf.py
CommitLineData
dcdb292f 1# coding: utf-8
685052fc 2#
cefecac1 3# youtube-dlc documentation build configuration file, created by
685052fc
JMF
4# sphinx-quickstart on Fri Mar 14 21:05:43 2014.
5#
6# This file is execfile()d with the current directory set to its
7# containing dir.
8#
9# Note that not all possible configuration values are present in this
10# autogenerated file.
11#
12# All configuration values have a default; values that are commented out
13# serve to show the default.
14
15import sys
16import os
cefecac1 17# Allows to import youtube_dlc
685052fc
JMF
18sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
19
20# -- General configuration ------------------------------------------------
21
22# Add any Sphinx extension module names here, as strings. They can be
23# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
24# ones.
25extensions = [
26 'sphinx.ext.autodoc',
27]
28
29# Add any paths that contain templates here, relative to this directory.
30templates_path = ['_templates']
31
32# The suffix of source filenames.
33source_suffix = '.rst'
34
35# The master toctree document.
36master_doc = 'index'
37
38# General information about the project.
cefecac1 39project = u'youtube-dlc'
685052fc
JMF
40copyright = u'2014, Ricardo Garcia Gonzalez'
41
42# The version info for the project you're documenting, acts as replacement for
43# |version| and |release|, also used in various other places throughout the
44# built documents.
45#
46# The short X.Y version.
cefecac1 47from youtube_dlc.version import __version__
aaa399d2 48version = __version__
685052fc
JMF
49# The full version, including alpha/beta/rc tags.
50release = version
51
52# List of patterns, relative to source directory, that match files and
53# directories to ignore when looking for source files.
54exclude_patterns = ['_build']
55
56# The name of the Pygments (syntax highlighting) style to use.
57pygments_style = 'sphinx'
58
59# -- Options for HTML output ----------------------------------------------
60
61# The theme to use for HTML and HTML Help pages. See the documentation for
62# a list of builtin themes.
63html_theme = 'default'
64
65# Add any paths that contain custom static files (such as style sheets) here,
66# relative to this directory. They are copied after the builtin static files,
67# so a file named "default.css" will overwrite the builtin "default.css".
68html_static_path = ['_static']
69
70# Output file base name for HTML help builder.
cefecac1 71htmlhelp_basename = 'youtube-dlcdoc'