]> git.phdru.name Git - sqlconvert.git/blobdiff - docs/conf.py
Various minor updates in docs
[sqlconvert.git] / docs / conf.py
index ce6f308bf7f279fe2835ae007f647623b36328a6..ecbec327e4a27fbcb7b30614ba482bbac37209e5 100644 (file)
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# mysql2sql documentation build configuration file, created by
+# sqlconvert documentation build configuration file, created by
 # sphinx-quickstart on Fri Jul 22 19:32:24 2016.
 #
 # This file is execfile()d with the current directory set to its
@@ -16,6 +16,7 @@
 # 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.
 #
+from datetime import date
 # import os
 # import sys
 # sys.path.insert(0, os.path.abspath('.'))
@@ -31,6 +32,7 @@
 # ones.
 extensions = [
     'sphinx.ext.autodoc',
+    'sphinx.ext.viewcode',
 ]
 
 # Add any paths that contain templates here, relative to this directory.
@@ -50,9 +52,9 @@ source_suffix = '.rst'
 master_doc = 'index'
 
 # General information about the project.
-project = u'mysql2sql'
-copyright = u'2016, Oleg Broytman'
+project = u'sqlconvert'
 author = u'Oleg Broytman'
+copyright = u'2016-%d, %s' % (date.today().year, author)
 
 # The version info for the project you're documenting, acts as replacement for
 # |version| and |release|, also used in various other places throughout the
@@ -135,7 +137,7 @@ html_theme = 'alabaster'
 # The name for this set of Sphinx documents.
 # "<project> v<release> documentation" by default.
 #
-# html_title = u'mysql2sql v0.0.1'
+# html_title = u'sqlconvert v0.0.1'
 
 # A shorter title for the navigation bar.  Default is the same as html_title.
 #
@@ -235,7 +237,7 @@ html_static_path = ['_static']
 # html_search_scorer = 'scorer.js'
 
 # Output file base name for HTML help builder.
-htmlhelp_basename = 'mysql2sqldoc'
+htmlhelp_basename = 'sqlconvert_doc'
 
 # -- Options for LaTeX output ---------------------------------------------
 
@@ -261,7 +263,7 @@ latex_elements = {
 # (source start file, target name, title,
 #  author, documentclass [howto, manual, or own class]).
 latex_documents = [
-    (master_doc, 'mysql2sql.tex', u'mysql2sql Documentation',
+    (master_doc, 'sqlconvert.tex', u'sqlconvert Documentation',
      u'Oleg Broytman', 'manual'),
 ]
 
@@ -303,7 +305,7 @@ latex_documents = [
 # One entry per manual page. List of tuples
 # (source start file, name, description, authors, manual section).
 man_pages = [
-    (master_doc, 'mysql2sql', u'mysql2sql Documentation',
+    (master_doc, 'sqlconvert', u'sqlconvert Documentation',
      [author], 1)
 ]
 
@@ -318,8 +320,8 @@ man_pages = [
 # (source start file, target name, title, author,
 #  dir menu entry, description, category)
 texinfo_documents = [
-    (master_doc, 'mysql2sql', u'mysql2sql Documentation',
-     author, 'mysql2sql', 'One line description of project.',
+    (master_doc, 'sqlconvert', u'sqlconvert Documentation',
+     author, 'sqlconvert', 'One line description of project.',
      'Miscellaneous'),
 ]