Metadata-Version: 2.1
Name: jupyterblack
Version: 0.2.1
Summary: Format code cells in Jupyter Notebook and JupyterLab using black.
Home-page: https://github.com/irahorecka/jupyterblack
Author: Ira Horecka
Author-email: ira89@icloud.com
License: MIT
Description: # jupyterblack
        
        [![Licence](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/csurfer/blackcellmagic/master/LICENSE)
        
        Format code cells in Jupyter Notebook and JupyterLab using [black](https://github.com/ambv/black).
        
        ## It's as simple as calling jblack
        
        ```bash
        $ jblack my_notebook.ipynb
        ```
        
        ## Install jupyterblack from the command line with pip
        
        ```bash
        $ pip install jupyterblack
        ```
        
        ## Usage
        
        ```bash
        # Format to black's default line length of 88.
        $ jblack notebook.ipynb
        
        # Customize your own line length to 70.
        $ jblack -l 70 notebook.ipynb
        
        # Format three .ipynb files to default line length.
        $ jblack notebook_1.ipynb notebook_2.ipynb notebook_3.ipynb
        
        # Show help.
        $ jblack -h
        ```
        
        ## Contributing
        
        ### Bug Reports and Feature Requests
        
        Please use the [issues tracker](https://github.com/irahorecka/jupyterblack/issues) to report bugs or submit feature requests.
        
        ### Development
        
        Pull requests are very welcome.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Intended Audience :: Developers
Requires-Python: >=3.5
Description-Content-Type: text/markdown
