Metadata-Version: 2.1
Name: flake8-import-single
Version: 0.1.6.dev7
Summary: Flake8 plugin that requires single line imports
Home-page: https://github.com/awiddersheim/flake8-import-single
Author: Andrew Widdersheim
Author-email: amwiddersheim@gmail.com
License: MIT
Description: # Flake8 Single Line Import Plugin
        
        A Flake8 plugin that requires single line imports.
        
        [![PyPI version](https://img.shields.io/pypi/v/flake8-import-single.svg)]( https://pypi.org/project/flake8-import-single)
        [![Python Versions](https://img.shields.io/pypi/pyversions/flake8-import-single.svg)](https://pypi.org/project/flake8-import-single)
        [![Build Status](https://img.shields.io/circleci/project/github/awiddersheim/flake8-import-single/master.svg)](https://circleci.com/gh/awiddersheim/flake8-import-single)
        [![License](https://img.shields.io/pypi/l/flake8-import-single.svg)](https://github.com/awiddersheim/flake8-import-single/blob/master/LICENSE)
        
        ## Introduction
        
        The following will result in an error:
        
        ```
        from foo import bar, baz
        ```
        
        It should be rewritten as:
        
        ```
        from foo import bar
        from foo import baz
        ```
        
        ## Installation
        
        ```
        $ pip install flake8-import-single
        $ pip install --upgrade flake8-import-single
        ```
        
        ## Plugin for Flake8
        
        ```
        $ flake8 --version
        3.5.0 (flake8-import-single: 0.1.2, mccabe: 0.6.1, pycodestyle: 2.3.1, pyflakes: 1.6.0)
        ```
        
        ## Thanks
        
        Much thanks goes out to [flake8-print][flake8-print] as the basis for
        this plugin.
        
        [flake8-print]: https://github.com/JBKahn/flake8-print
        
Platform: UNKNOWN
Classifier: Framework :: Flake8
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Operating System :: OS Independent
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/markdown
Provides-Extra: dev
