Metadata-Version: 2.1
Name: pyls-black
Version: 0.4.6
Summary: Black plugin for the Python Language Server
Home-page: https://github.com/rupert/pyls-black
Author: Rupert Bedford
Author-email: rupert@rupertb.com
License: UNKNOWN
Description: # pyls-black
        
        [![PyPI](https://img.shields.io/pypi/v/pyls-black.svg)](https://pypi.org/project/pyls-black/) [![CircleCI branch](https://img.shields.io/circleci/project/github/rupert/pyls-black/master.svg)](https://circleci.com/gh/rupert/pyls-black) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pyls-black.svg) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
        
        > [Black](https://github.com/ambv/black) plugin for the [Python Language Server](https://github.com/palantir/python-language-server).
        
        In the same `virtualenv` as `python-language-server`:
        
        ```shell
        pip3 install pyls-black
        ```
        
        To avoid unexpected results you should make sure `yapf` and `autopep8` are not installed.
        
        * `pyls-black` can either format an entire file or just the selected text.
        * The code will only be formatted if it is syntactically valid Python.
        * Text selections are treated as if they were a separate Python file.
          Unfortunately this means you can't format an indented block of code.
        * `pyls-black` will use your project's [pyproject.toml](https://github.com/ambv/black#pyprojecttoml) if it has one.
        
        See the [wiki](https://github.com/rupert/pyls-black/wiki) for instructions on how to use `pyls-black` with popular text editors.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
