Metadata-Version: 2.2
Name: isort-psycopg
Version: 0.0.1
Summary: isort plug-in to sort imports by module length first
Author-email: Daniele Varrazzo <daniele.varrazzo@gmail.com>
Description-Content-Type: text/x-rst

Psycopg style isort
===================

This is an isort_ plugin to sort:

- import in length order
- import lists in natural order

The effect is the same of specifying ``--length-sort`` but only for the module
names. For example::

    from ccc import aaaa, bbb, cc
    from bbbb import ddd, ee
    from aaaaa import fff, gg

Example configuration::

    [tool.isort]
    profile = "black"
    length_sort = true
    multi_line_output = 9
    sort_order = "psycopg"

Note: because this is the first day I use isort at all, there is a chance that
this plug-in is totally useless and the same can be done using isort features.

.. _isort: https://pycqa.github.io/isort/
