summaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 5f990f3..7935b0b 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
-# pep8 documentation build configuration file, created by
+# pycodestyle documentation build configuration file, created by
# sphinx-quickstart on Tue Aug 21 09:47:49 2012.
#
# This file is execfile()d with the current directory set to its
@@ -44,7 +44,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'pep8'
+project = u'pycodestyle'
authors = u'Johann C. Rocholl, Florent Xicluna, Ian Lee'
copyright = u'2006-2016, %s' % (authors)
@@ -53,11 +53,11 @@ copyright = u'2006-2016, %s' % (authors)
# built documents.
#
-pep8_version = __import__('pep8').__version__.split('.')
+pkg_version = __import__('pycodestyle').__version__.split('.')
# The short X.Y version.
-version = '.'.join(pep8_version[:2])
+version = '.'.join(pkg_version[:2])
# The full version, including alpha/beta/rc tags.
-release = '.'.join(pep8_version)
+release = '.'.join(pkg_version)
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ -176,7 +176,7 @@ if not on_rtd: # only import and set the theme if we're building docs locally
#html_file_suffix = None
# Output file base name for HTML help builder.
-htmlhelp_basename = 'pep8doc'
+htmlhelp_basename = 'pycodestyledoc'
# -- Options for LaTeX output -------------------------------------------------
@@ -196,7 +196,7 @@ latex_elements = {
# (source start file, target name, title,
# author, documentclass [howto/manual]).
latex_documents = [
- ('index', 'pep8.tex', u'pep8 documentation',
+ ('index', 'pycodestyle.tex', u'pycodestyle documentation',
authors, 'manual'),
]
@@ -226,7 +226,7 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
- ('index', 'pep8', u'pep8 documentation',
+ ('index', 'pycodestyle', u'pycodestyle documentation',
[authors], 1)
]
@@ -240,8 +240,8 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
- ('index', 'pep8', u'pep8 documentation', authors,
- 'pep8', 'One line description of project.',
+ ('index', 'pycodestyle', u'pycodestyle documentation', authors,
+ 'pycodestyle', 'One line description of project.',
'Miscellaneous'),
]