File: control

package info (click to toggle)
flake8-import-order 0.18.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 304 kB
  • sloc: python: 1,336; sh: 5; makefile: 4
file content (34 lines) | stat: -rw-r--r-- 1,393 bytes parent folder | download | duplicates (2)
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
Source: flake8-import-order
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Jose Luis Rivero <jrivero@osrfoundation.org>
Section: python
Priority: optional
Build-Depends: debhelper-compat (= 13),
               dh-sequence-python3,
               pycodestyle,
               python3-all,
               python3-flake8,
               python3-setuptools,
               python3-pylama,
               python3-pytest
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/python-team/packages/flake8-import-order
Vcs-Git: https://salsa.debian.org/python-team/packages/flake8-import-order.git
Rules-Requires-Root: no
Homepage: https://github.com/PyCQA/flake8-import-order
Testsuite: autopkgtest-pkg-pybuild

Package: python3-flake8-import-order
Architecture: all
Depends: ${misc:Depends},
         ${python3:Depends}
Enhances: flake8, python3-pylama
Description: flake8 extension to lint for the import order in Python files
 A flake8 and Pylama plugin that checks the ordering of Python imports. It
 does not check anything else about the imports. Merely that they are
 grouped and ordered correctly.
 .
 In general stdlib comes first, then 3rd party, then local packages, and
 that each group is individually alphabetized, however this depends on
 the style used. Flake8-Import-Order supports a number of styles and is
 extensible allowing for custom styles.