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
|
import os
import sys
import caching
sys.path.append(os.path.abspath(".."))
# The suffix of source filenames.
source_suffix = ".rst"
# The master toctree document.
master_doc = "index"
extensions = ["sphinx.ext.autodoc"]
# General information about the project.
project = "Cache Machine"
copyright = "2010, The Zamboni Collective"
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# version: The short X.Y version.
# release: The full version, including alpha/beta/rc tags.
version = release = caching.__version__
# List of directories, relative to source directory, that shouldn't be searched
# for source files.
exclude_trees = ["_build"]
|