1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
Source: python-docformatter
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
Adam Cecile <acecile@le-vert.net>,
Michael Fladischer <fladi@debian.org>,
Build-Depends:
debhelper-compat (= 13),
dh-sequence-python3,
help2man,
pybuild-plugin-pyproject,
python3-all,
python3-charset-normalizer <!nocheck>,
python3-poetry-core,
python3-pytest <!nocheck>,
python3-sphinx,
python3-untokenize,
Standards-Version: 4.6.2
Homepage: https://github.com/PyCQA/docformatter
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-docformatter
Vcs-Git: https://salsa.debian.org/python-team/packages/python-docformatter.git
Testsuite: autopkgtest-pkg-python
Rules-Requires-Root: no
X-Style: black
Package: python-docformatter-doc
Architecture: all
Multi-Arch: foreign
Section: doc
Depends:
${misc:Depends},
${sphinxdoc:Depends},
Description: Formats docstrings to follow Python PEP 257 (Documentation)
Docformatter currently automatically formats docstrings to follow a subset
of the PEP 257 conventions.
.
Below are the relevant items quoted from PEP 257:
.
* For consistency, always use triple double quotes around docstrings,
* Triple quotes are used even though the string fits on one line,
* Multi-line docstrings consist of a summary line just like a one-line
docstring, followed by a blank line, followed by a more elaborate
description,
* Unless the entire docstring fits on a line, place the closing quotes on
a line by themselves.
.
Docformatter also handles some of the PEP 8 conventions:
.
* Don't write string literals that rely on significant trailing whitespace
Such trailing whitespace is visually indistinguishable and some editors
(or more recently, reindent.py) will trim them.
.
This package contains the documentation.
Package: python3-docformatter
Architecture: all
Depends:
${misc:Depends},
${python3:Depends},
Description: Formats docstrings to follow Python PEP 257 (Python 3)
Docformatter currently automatically formats docstrings to follow a subset
of the PEP 257 conventions.
.
Below are the relevant items quoted from PEP 257:
.
* For consistency, always use triple double quotes around docstrings,
* Triple quotes are used even though the string fits on one line,
* Multi-line docstrings consist of a summary line just like a one-line
docstring, followed by a blank line, followed by a more elaborate
description,
* Unless the entire docstring fits on a line, place the closing quotes on
a line by themselves.
.
Docformatter also handles some of the PEP 8 conventions:
.
* Don't write string literals that rely on significant trailing whitespace
Such trailing whitespace is visually indistinguishable and some editors
(or more recently, reindent.py) will trim them.
.
This package installs the library for Python 3.
|