X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=doc%2Fsource%2Fconf.py;h=886811f3c596e33db0cd1feae63d0985b48469a1;hp=8df63f2152d4c927439cbd9c5f5aa7df09a48ca6;hb=57628d1d2e54b60c27ff5bcf60c6d17beeffc22c;hpb=3701fc9d2658323a423476695e550224f2cb7343 diff --git a/doc/source/conf.py b/doc/source/conf.py index 8df63f2..886811f 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -1,6 +1,8 @@ # coding: utf-8 +# SPDX-FileCopyrightText: 2018-2021 kaliko +# SPDX-License-Identifier: GPL-3.0-or-later # -# Python ListenBrainz Module documentation build configuration file, created by +# Python MPD Module documentation build configuration file, created by # sphinx-quickstart on Mon Mar 12 14:37:32 2018. # # This file is execfile()d with the current directory set to its @@ -55,8 +57,9 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -project = u'Python ListenBrainz Module' -copyright = u'2018, {}'.format(__author__) +project = u'Python MPD Module' +from datetime import datetime +copyright = u'2012-{}, {}'.format(datetime.now().year, __author__) author = __author__ # The version info for the project you're documenting, acts as replacement for @@ -143,7 +146,7 @@ html_theme = 'classic' # The name for this set of Sphinx documents. # " v documentation" by default. # -# html_title = u'Python ListenBrainz Module v0.0.1' +# html_title = u'Python MPD Module v0.0.1' # A shorter title for the navigation bar. Default is the same as html_title. # @@ -244,7 +247,7 @@ html_show_sphinx = False # html_search_scorer = 'scorer.js' # Output file base name for HTML help builder. -htmlhelp_basename = 'PythonListenBrainzModuledoc' +htmlhelp_basename = 'PythonMPDModuledoc' # -- Options for LaTeX output --------------------------------------------- @@ -270,7 +273,7 @@ latex_elements = { # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ - (master_doc, 'PythonListenBrainzModule.tex', u'Python ListenBrainz Module Documentation', + (master_doc, 'PythonMPDModule.tex', u'Python MPD Module Documentation', u'kaliko', 'manual'), ] @@ -312,7 +315,7 @@ latex_documents = [ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ - (master_doc, 'pythonlistenbrainzmodule', u'Python ListenBrainz Module Documentation', + (master_doc, 'pythonmpdmodule', u'Python MPD Module Documentation', [author], 1) ] @@ -327,8 +330,8 @@ man_pages = [ # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - (master_doc, 'PythonListenBrainzModule', u'Python ListenBrainz Module Documentation', - author, 'PythonListenBrainzModule', 'One line description of project.', + (master_doc, 'PythonMPDModule', u'Python MPD Module Documentation', + author, 'PythonMPDModule', 'One line description of project.', 'Miscellaneous'), ]