aboutsummaryrefslogtreecommitdiffstats
path: root/docs/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/docs/conf.py b/docs/conf.py
index b224335..a8227a3 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -13,6 +13,8 @@
import sys, os
+from wkhtmltopdf import get_version
+
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
@@ -41,16 +43,16 @@ master_doc = 'index'
# General information about the project.
project = u'django-wkhtmltopdf'
-copyright = u'2011, Charles Denton, George Hickman'
+copyright = u'2012, Incuna Ltd'
# 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 = '0.1'
+version = get_version()
# The full version, including alpha/beta/rc tags.
-release = '0.1.2'
+release = get_version()
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ -184,7 +186,7 @@ latex_elements = {
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'django-wkhtmltopdf.tex', u'django-wkhtmltopdf Documentation',
- u'Charles Denton, George Hickman', 'manual'),
+ u'Incuna Ltd', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -214,7 +216,7 @@ latex_documents = [
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'django-wkhtmltopdf', u'django-wkhtmltopdf Documentation',
- [u'Charles Denton, George Hickman'], 1)
+ [u'Incuna Ltd'], 1)
]
# If true, show URL addresses after external links.
@@ -228,7 +230,7 @@ man_pages = [
# dir menu entry, description, category)
texinfo_documents = [
('index', 'django-wkhtmltopdf', u'django-wkhtmltopdf Documentation',
- u'Charles Denton, George Hickman', 'django-wkhtmltopdf', 'One line description of project.',
+ u'Incuna Ltd', 'django-wkhtmltopdf', 'One line description of project.',
'Miscellaneous'),
]