Ravenports generated: 04 Sep 2021 18:22
[ravenports.git] / bucket_26 / python-isort
1 # Buildsheet autogenerated by ravenadm tool -- Do not edit.
2
3 NAMEBASE=               python-isort
4 VERSION=                5.9.3
5 KEYWORDS=               python
6 VARIANTS=               py38 py39
7 SDESC[py38]=            Utility library to sort Python imports (PY38)
8 SDESC[py39]=            Utility library to sort Python imports (PY39)
9 HOMEPAGE=               https://pycqa.github.io/isort/
10 CONTACT=                Python_Automaton[python@ironwolf.systems]
11
12 DOWNLOAD_GROUPS=        main
13 SITES[main]=            PYPIWHL/c4/1d/f4e03047d6767e35c1efb13a280c1ef8b88807230f902da4cfc431a9f602
14 DISTFILE[1]=            isort-5.9.3-py3-none-any.whl:main
15 DF_INDEX=               1
16 SPKGS[py38]=            single
17 SPKGS[py39]=            single
18
19 OPTIONS_AVAILABLE=      PY38 PY39
20 OPTIONS_STANDARD=       none
21 VOPTS[py38]=            PY38=ON PY39=OFF
22 VOPTS[py39]=            PY38=OFF PY39=ON
23
24 DISTNAME=               isort-5.9.3.dist-info
25
26 GENERATED=              yes
27
28 [PY38].USES_ON=                         python:py38,wheel
29
30 [PY39].USES_ON=                         python:py39,wheel
31
32 [FILE:2126:descriptions/desc.single]
33 [![isort - isort your imports, so you don't have
34 to.]](https://pycqa.github.io/isort/)
35
36 ------------------------------------------------------------------------
37
38 [PyPI version]
39 [Test Status]
40 [Lint Status]
41 [Code coverage Status]
42 [License]
43 [![Join the chat at
44 https://gitter.im/timothycrosley/isort]](https://gitter.im/timothycrosley/isort?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
45 [Downloads]
46 [![Code style: black]](https://github.com/psf/black)
47 [![Imports: isort]](https://pycqa.github.io/isort/)
48 [DeepSource]
49 _________________
50
51 [Read Latest Documentation] - [Browse GitHub Code Repository]
52 _________________
53
54 isort your imports, so you don't have to.
55
56 isort is a Python utility / library to sort imports alphabetically, and
57 automatically separated into sections and by type. It provides a command
58 line
59 utility, Python library and [plugins for various
60 editors] to
61 quickly sort all your imports. It requires Python 3.6+ to run but
62 supports formatting Python 2 code too.
63
64 - [Try isort now from your browser!]
65 - [Using black? See the isort and black compatibility guide.]
66 - [isort has official support for pre-commit!]
67
68 ![Example Usage]
69
70 Before isort:
71
72 ```python
73 from my_lib import Object
74
75 import os
76
77 from my_lib import Object3
78
79 from my_lib import Object2
80
81 import sys
82
83 from third_party import lib15, lib1, lib2, lib3, lib4, lib5, lib6, lib7,
84 lib8, lib9, lib10, lib11, lib12, lib13, lib14
85
86 import sys
87
88 from __future__ import absolute_import
89
90 from third_party import lib3
91
92 print("Hey")
93 print("yo")
94 ```
95
96 After isort:
97
98 ```python
99 from __future__ import absolute_import
100
101 import os
102 import sys
103
104 from third_party import (lib1, lib2, lib3, lib4, lib5, lib6, lib7, lib8,
105                          lib9, lib10, lib11, lib12, lib13, lib14, lib15)
106
107 from my_lib import Object, Object2, Object3
108
109 print("Hey")
110 print("yo")
111 ```
112
113 ## Installing isort
114
115 Installing isort is as simple as:
116
117 `bash
118 pip install isort
119 `
120
121 Install isort with requirements.txt support:
122
123 ```bash
124 pip install isort[requirements_deprecated_finder]
125 ```
126
127 Install isort with Pipfile support:
128
129 ```bash
130 pip install isort[pipfile_deprecated_finder]
131 ```
132
133
134
135 [FILE:107:distinfo]
136 e17d6e2b81095c9db0a03a8025a957f334d6ea30b26f9ec70805411e5c7c81f2       106056 isort-5.9.3-py3-none-any.whl
137