|
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | # |
3 | | -# pep8 documentation build configuration file, created by |
| 3 | +# pycodestyle documentation build configuration file, created by |
4 | 4 | # sphinx-quickstart on Tue Aug 21 09:47:49 2012. |
5 | 5 | # |
6 | 6 | # This file is execfile()d with the current directory set to its |
|
44 | 44 | master_doc = 'index' |
45 | 45 |
|
46 | 46 | # General information about the project. |
47 | | -project = u'pep8' |
| 47 | +project = u'pycodestyle' |
48 | 48 | authors = u'Johann C. Rocholl, Florent Xicluna, Ian Lee' |
49 | 49 | copyright = u'2006-2016, %s' % (authors) |
50 | 50 |
|
|
53 | 53 | # built documents. |
54 | 54 | # |
55 | 55 |
|
56 | | -pep8_version = __import__('pep8').__version__.split('.') |
| 56 | +pkg_version = __import__('pycodestyle').__version__.split('.') |
57 | 57 | # The short X.Y version. |
58 | | -version = '.'.join(pep8_version[:2]) |
| 58 | +version = '.'.join(pkg_version[:2]) |
59 | 59 | # The full version, including alpha/beta/rc tags. |
60 | | -release = '.'.join(pep8_version) |
| 60 | +release = '.'.join(pkg_version) |
61 | 61 |
|
62 | 62 | # The language for content autogenerated by Sphinx. Refer to documentation |
63 | 63 | # for a list of supported languages. |
|
176 | 176 | #html_file_suffix = None |
177 | 177 |
|
178 | 178 | # Output file base name for HTML help builder. |
179 | | -htmlhelp_basename = 'pep8doc' |
| 179 | +htmlhelp_basename = 'pycodestyledoc' |
180 | 180 |
|
181 | 181 |
|
182 | 182 | # -- Options for LaTeX output ------------------------------------------------- |
|
196 | 196 | # (source start file, target name, title, |
197 | 197 | # author, documentclass [howto/manual]). |
198 | 198 | latex_documents = [ |
199 | | - ('index', 'pep8.tex', u'pep8 documentation', |
| 199 | + ('index', 'pycodestyle.tex', u'pycodestyle documentation', |
200 | 200 | authors, 'manual'), |
201 | 201 | ] |
202 | 202 |
|
|
226 | 226 | # One entry per manual page. List of tuples |
227 | 227 | # (source start file, name, description, authors, manual section). |
228 | 228 | man_pages = [ |
229 | | - ('index', 'pep8', u'pep8 documentation', |
| 229 | + ('index', 'pycodestyle', u'pycodestyle documentation', |
230 | 230 | [authors], 1) |
231 | 231 | ] |
232 | 232 |
|
|
240 | 240 | # (source start file, target name, title, author, |
241 | 241 | # dir menu entry, description, category) |
242 | 242 | texinfo_documents = [ |
243 | | - ('index', 'pep8', u'pep8 documentation', authors, |
244 | | - 'pep8', 'One line description of project.', |
| 243 | + ('index', 'pycodestyle', u'pycodestyle documentation', authors, |
| 244 | + 'pycodestyle', 'One line description of project.', |
245 | 245 | 'Miscellaneous'), |
246 | 246 | ] |
247 | 247 |
|
|
0 commit comments