diff options
author | Tim Harder <radhermit@gmail.com> | 2015-01-11 21:41:23 -0800 |
---|---|---|
committer | Tim Harder <radhermit@gmail.com> | 2015-01-11 21:43:39 -0800 |
commit | 1295906f67ab8b6914ecd22e34aa18c50a24d4cd (patch) | |
tree | cb47fdae7ac7838cbcef8774a90395a5cb980d82 /doc | |
parent | travis-ci: drop 3.2 testing (diff) | |
download | snakeoil-1295906f67ab8b6914ecd22e34aa18c50a24d4cd.tar.gz snakeoil-1295906f67ab8b6914ecd22e34aa18c50a24d4cd.tar.bz2 snakeoil-1295906f67ab8b6914ecd22e34aa18c50a24d4cd.zip |
doc: add myself to authors list and drop duplicated data
Diffstat (limited to 'doc')
-rw-r--r-- | doc/conf.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/conf.py b/doc/conf.py index df1af19..30015eb 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -50,7 +50,9 @@ master_doc = 'index' # General information about the project. project = u'snakeoil' -copyright = u'2010, Brian Harring' +authors_list = ['Brian Harring', 'Tim Harder'] +authors = ', '.join(authors_list) +copyright = u'2010-2015, ' + authors # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -189,7 +191,7 @@ htmlhelp_basename = 'snakeoildoc' # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ ('index', 'snakeoil.tex', u'snakeoil Documentation', - u'Brian Harring', 'manual'), + authors, 'manual'), ] # The name of an image file (relative to this directory) to place at the top of @@ -221,8 +223,7 @@ latex_documents = [ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ - ('index', 'snakeoil', u'snakeoil Documentation', - [u'Brian Harring'], 1) + ('index', 'snakeoil', u'snakeoil Documentation', authors_list, 1) ] |