]>
Raphaƫl G. Git Repositories - youtubedl/blob - docs/conf.py
4a04ad779722f191085cf5bd3b927d89e4afa385
   1 # -*- coding: utf-8 -*- 
   3 # youtube-dl documentation build configuration file, created by 
   4 # sphinx-quickstart on Fri Mar 14 21:05:43 2014. 
   6 # This file is execfile()d with the current directory set to its 
   9 # Note that not all possible configuration values are present in this 
  12 # All configuration values have a default; values that are commented out 
  13 # serve to show the default. 
  17 # Allows to import youtube_dl 
  18 sys
.path
.insert(0, os
.path
.dirname(os
.path
.dirname(os
.path
.abspath(__file__
)))) 
  20 # -- General configuration ------------------------------------------------ 
  22 # Add any Sphinx extension module names here, as strings. They can be 
  23 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom 
  29 # Add any paths that contain templates here, relative to this directory. 
  30 templates_path 
= ['_templates'] 
  32 # The suffix of source filenames. 
  33 source_suffix 
= '.rst' 
  35 # The master toctree document. 
  38 # General information about the project. 
  39 project 
= u
'youtube-dl' 
  40 copyright 
= u
'2014, Ricardo Garcia Gonzalez' 
  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 
  46 # The short X.Y version. 
  48 version 
= youtube_dl
.__version
__ 
  49 # The full version, including alpha/beta/rc tags. 
  52 # List of patterns, relative to source directory, that match files and 
  53 # directories to ignore when looking for source files. 
  54 exclude_patterns 
= ['_build'] 
  56 # The name of the Pygments (syntax highlighting) style to use. 
  57 pygments_style 
= 'sphinx' 
  59 # -- Options for HTML output ---------------------------------------------- 
  61 # The theme to use for HTML and HTML Help pages.  See the documentation for 
  62 # a list of builtin themes. 
  63 html_theme 
= 'default' 
  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". 
  68 html_static_path 
= ['_static'] 
  70 # Output file base name for HTML help builder. 
  71 htmlhelp_basename 
= 'youtube-dldoc'