summaryrefslogtreecommitdiff
path: root/docs/build/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/build/conf.py')
-rw-r--r--docs/build/conf.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/build/conf.py b/docs/build/conf.py
index 94015f1..0de0a19 100644
--- a/docs/build/conf.py
+++ b/docs/build/conf.py
@@ -23,7 +23,7 @@ import sys, os
# absolute, like shown here.
sys.path.insert(0, os.path.abspath('../../'))
-import dogpile
+import dogpile.core
# -- General configuration -----------------------------------------------------
@@ -44,17 +44,17 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'Dogpile'
-copyright = u'2011, Mike Bayer'
+project = u'dogpile.core'
+copyright = u'2011, 2012 Mike Bayer'
# 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.
#
# The short X.Y version.
-version = dogpile.__version__
+version = dogpile.core.__version__
# The full version, including alpha/beta/rc tags.
-release = dogpile.__version__
+release = dogpile.core.__version__
# The language for content autogenerated by Sphinx. Refer to documentation
@@ -166,7 +166,7 @@ html_static_path = ['_static']
#html_file_suffix = ''
# Output file base name for HTML help builder.
-htmlhelp_basename = 'dogpiledoc'
+htmlhelp_basename = 'dogpile.coredoc'
# -- Options for LaTeX output --------------------------------------------------
@@ -180,7 +180,7 @@ htmlhelp_basename = 'dogpiledoc'
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
- ('index', 'dogpile.tex', u'Dogpile Documentation',
+ ('index', 'dogpile.core.tex', u'dogpile.core Documentation',
u'Mike Bayer', 'manual'),
]