Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/domdfcoding/yapf-isort
yapf 💌 isort
https://github.com/domdfcoding/yapf-isort
python
Last synced: 21 days ago
JSON representation
yapf 💌 isort
- Host: GitHub
- URL: https://github.com/domdfcoding/yapf-isort
- Owner: domdfcoding
- License: apache-2.0
- Created: 2020-09-13T18:47:36.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-08T21:34:19.000Z (28 days ago)
- Last Synced: 2024-10-13T02:09:07.413Z (24 days ago)
- Topics: python
- Language: Python
- Homepage:
- Size: 255 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
###########
yapf-isort
###########.. start short_desc
**yapf 💌 isort**
.. end short_desc
Script and `pre-commit hook `_
to run `yapf `_
and `isort `_
together for formatting Python source files... start shields
.. list-table::
:stub-columns: 1
:widths: 10 90* - Tests
- |actions_linux| |actions_windows| |actions_macos| |coveralls|
* - PyPI
- |pypi-version| |supported-versions| |supported-implementations| |wheel|
* - Anaconda
- |conda-version| |conda-platform|
* - Activity
- |commits-latest| |commits-since| |maintained| |pypi-downloads|
* - QA
- |codefactor| |actions_flake8| |actions_mypy|
* - Other
- |license| |language| |requires|.. |actions_linux| image:: https://github.com/domdfcoding/yapf-isort/workflows/Linux/badge.svg
:target: https://github.com/domdfcoding/yapf-isort/actions?query=workflow%3A%22Linux%22
:alt: Linux Test Status.. |actions_windows| image:: https://github.com/domdfcoding/yapf-isort/workflows/Windows/badge.svg
:target: https://github.com/domdfcoding/yapf-isort/actions?query=workflow%3A%22Windows%22
:alt: Windows Test Status.. |actions_macos| image:: https://github.com/domdfcoding/yapf-isort/workflows/macOS/badge.svg
:target: https://github.com/domdfcoding/yapf-isort/actions?query=workflow%3A%22macOS%22
:alt: macOS Test Status.. |actions_flake8| image:: https://github.com/domdfcoding/yapf-isort/workflows/Flake8/badge.svg
:target: https://github.com/domdfcoding/yapf-isort/actions?query=workflow%3A%22Flake8%22
:alt: Flake8 Status.. |actions_mypy| image:: https://github.com/domdfcoding/yapf-isort/workflows/mypy/badge.svg
:target: https://github.com/domdfcoding/yapf-isort/actions?query=workflow%3A%22mypy%22
:alt: mypy status.. |requires| image:: https://dependency-dash.repo-helper.uk/github/domdfcoding/yapf-isort/badge.svg
:target: https://dependency-dash.repo-helper.uk/github/domdfcoding/yapf-isort/
:alt: Requirements Status.. |coveralls| image:: https://img.shields.io/coveralls/github/domdfcoding/yapf-isort/master?logo=coveralls
:target: https://coveralls.io/github/domdfcoding/yapf-isort?branch=master
:alt: Coverage.. |codefactor| image:: https://img.shields.io/codefactor/grade/github/domdfcoding/yapf-isort?logo=codefactor
:target: https://www.codefactor.io/repository/github/domdfcoding/yapf-isort
:alt: CodeFactor Grade.. |pypi-version| image:: https://img.shields.io/pypi/v/yapf-isort
:target: https://pypi.org/project/yapf-isort/
:alt: PyPI - Package Version.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/yapf-isort?logo=python&logoColor=white
:target: https://pypi.org/project/yapf-isort/
:alt: PyPI - Supported Python Versions.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/yapf-isort
:target: https://pypi.org/project/yapf-isort/
:alt: PyPI - Supported Implementations.. |wheel| image:: https://img.shields.io/pypi/wheel/yapf-isort
:target: https://pypi.org/project/yapf-isort/
:alt: PyPI - Wheel.. |conda-version| image:: https://img.shields.io/conda/v/domdfcoding/yapf-isort?logo=anaconda
:target: https://anaconda.org/domdfcoding/yapf-isort
:alt: Conda - Package Version.. |conda-platform| image:: https://img.shields.io/conda/pn/domdfcoding/yapf-isort?label=conda%7Cplatform
:target: https://anaconda.org/domdfcoding/yapf-isort
:alt: Conda - Platform.. |license| image:: https://img.shields.io/github/license/domdfcoding/yapf-isort
:target: https://github.com/domdfcoding/yapf-isort/blob/master/LICENSE
:alt: License.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/yapf-isort
:alt: GitHub top language.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/yapf-isort/v0.7.0
:target: https://github.com/domdfcoding/yapf-isort/pulse
:alt: GitHub commits since tagged version.. |commits-latest| image:: https://img.shields.io/github/last-commit/domdfcoding/yapf-isort
:target: https://github.com/domdfcoding/yapf-isort/commit/master
:alt: GitHub last commit.. |maintained| image:: https://img.shields.io/maintenance/yes/2024
:alt: Maintenance.. |pypi-downloads| image:: https://img.shields.io/pypi/dm/yapf-isort
:target: https://pypi.org/project/yapf-isort/
:alt: PyPI - Downloads.. end shields
|
Installation
--------------.. start installation
``yapf-isort`` can be installed from PyPI or Anaconda.
To install with ``pip``:
.. code-block:: bash
$ python -m pip install yapf-isort
To install with ``conda``:
* First add the required channels
.. code-block:: bash
$ conda config --add channels https://conda.anaconda.org/conda-forge
$ conda config --add channels https://conda.anaconda.org/domdfcoding* Then install
.. code-block:: bash
$ conda install yapf-isort
.. end installation