|
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | # |
3 | | -# pep257 documentation build configuration file, created by |
| 3 | +# pydocstyle documentation build configuration file, created by |
4 | 4 | # sphinx-quickstart on Fri Jan 30 20:30:42 2015. |
5 | 5 | # |
6 | 6 | # This file is execfile()d with the current directory set to its |
|
48 | 48 | master_doc = 'index' |
49 | 49 |
|
50 | 50 | # General information about the project. |
51 | | -project = u'pep257' |
52 | | -copyright = u'2015, Vladimir Keleshev' |
| 51 | +project = u'pydocstyle' |
| 52 | +copyright = u'2016, Amir Rachum' |
53 | 53 |
|
54 | 54 | # The version info for the project you're documenting, acts as replacement for |
55 | 55 | # |version| and |release|, also used in various other places throughout the |
56 | 56 | # built documents. |
57 | 57 | # |
58 | 58 | # The short X.Y version. |
59 | | -version = '0.5.0' |
| 59 | +version = '1.0.0' |
60 | 60 | # The full version, including alpha/beta/rc tags. |
61 | | -release = '0.5.0' |
| 61 | +release = '1.0.0' |
62 | 62 |
|
63 | 63 | # The language for content autogenerated by Sphinx. Refer to documentation |
64 | 64 | # for a list of supported languages. |
|
181 | 181 | #html_file_suffix = None |
182 | 182 |
|
183 | 183 | # Output file base name for HTML help builder. |
184 | | -htmlhelp_basename = 'pep257doc' |
| 184 | +htmlhelp_basename = 'pydocstyledoc' |
185 | 185 |
|
186 | 186 |
|
187 | 187 | # -- Options for LaTeX output --------------------------------------------- |
|
201 | 201 | # (source start file, target name, title, |
202 | 202 | # author, documentclass [howto, manual, or own class]). |
203 | 203 | latex_documents = [ |
204 | | - ('index', 'pep257.tex', u'pep257 Documentation', |
205 | | - u'Vladimir Keleshev', 'manual'), |
| 204 | + ('index', 'pydocstyle.tex', u'pydocstyle Documentation', |
| 205 | + u'Amir Rachum', 'manual'), |
206 | 206 | ] |
207 | 207 |
|
208 | 208 | # The name of an image file (relative to this directory) to place at the top of |
|
231 | 231 | # One entry per manual page. List of tuples |
232 | 232 | # (source start file, name, description, authors, manual section). |
233 | 233 | man_pages = [ |
234 | | - ('index', 'pep257', u'pep257 Documentation', |
235 | | - [u'Vladimir Keleshev'], 1) |
| 234 | + ('index', 'pydocstyle', u'pydocstyle Documentation', |
| 235 | + [u'Amir Rachum'], 1) |
236 | 236 | ] |
237 | 237 |
|
238 | 238 | # If true, show URL addresses after external links. |
|
245 | 245 | # (source start file, target name, title, author, |
246 | 246 | # dir menu entry, description, category) |
247 | 247 | texinfo_documents = [ |
248 | | - ('index', 'pep257', u'pep257 Documentation', |
249 | | - u'Vladimir Keleshev', 'pep257', 'One line description of project.', |
| 248 | + ('index', 'pydocstyle', u'pydocstyle Documentation', |
| 249 | + u'Amir Rachum', 'pydocstyle', 'Docstring style checker', |
250 | 250 | 'Miscellaneous'), |
251 | 251 | ] |
252 | 252 |
|
|
264 | 264 |
|
265 | 265 | # sphinxcontrib.issuetracker settings |
266 | 266 | issuetracker = 'github' |
267 | | -issuetracker_project = 'GreenSteam/pep257' |
| 267 | +issuetracker_project = 'PyCQA/pydocstyle' |
268 | 268 |
|
269 | 269 |
|
270 | 270 | def generate_error_code_table(): |
271 | | - from pep257 import ErrorRegistry |
| 271 | + from pydocstyle import ErrorRegistry |
272 | 272 | with open(os.path.join('snippets', 'error_code_table.rst'), 'wt') as outf: |
273 | 273 | outf.write(ErrorRegistry.to_rst()) |
274 | 274 |
|
|
0 commit comments