|
11 | 11 | # All configuration values have a default; values that are commented out
|
12 | 12 | # serve to show the default.
|
13 | 13 |
|
14 |
| -import sys, os |
| 14 | +from __future__ import unicode_literals |
| 15 | + |
| 16 | +import os |
| 17 | + |
15 | 18 | import alabaster
|
16 | 19 |
|
| 20 | +import saml2.version |
| 21 | + |
17 | 22 | # If extensions (or modules to document with autodoc) are in another directory,
|
18 | 23 | # add these directories to sys.path here. If the directory is relative to the
|
19 | 24 | # documentation root, use os.path.abspath to make it absolute, like shown here.
|
|
39 | 44 | master_doc = 'index'
|
40 | 45 |
|
41 | 46 | # General information about the project.
|
42 |
| -project = u'pysaml2' |
43 |
| -copyright = u'2010-2011, Roland Hedberg' |
| 47 | +project = 'pysaml2' |
| 48 | +copyright = '2010-2011, Roland Hedberg' |
44 | 49 |
|
45 | 50 | # The version info for the project you're documenting, acts as replacement for
|
46 | 51 | # |version| and |release|, also used in various other places throughout the
|
47 | 52 | # built documents.
|
48 | 53 | #
|
49 | 54 | # The short X.Y version.
|
50 |
| -version = '' |
| 55 | +version = str(saml2.version.version) |
51 | 56 | # The full version, including alpha/beta/rc tags.
|
52 | 57 | release = ''
|
53 | 58 |
|
|
180 | 185 | # Grouping the document tree into LaTeX files. List of tuples
|
181 | 186 | # (source start file, target name, title, author, documentclass [howto/manual]).
|
182 | 187 | latex_documents = [
|
183 |
| - ('index', 'pysaml2.tex', u'pysaml2 Documentation', |
184 |
| - u'Roland Hedberg', 'manual'), |
| 188 | + ( |
| 189 | + 'index', |
| 190 | + 'pysaml2.tex', |
| 191 | + 'pysaml2 Documentation', |
| 192 | + 'Roland Hedberg', |
| 193 | + 'manual', |
| 194 | + ), |
185 | 195 | ]
|
186 | 196 |
|
187 | 197 | # The name of an image file (relative to this directory) to place at the top of
|
|
0 commit comments