Metadata-Version: 2.1
Name: flake8-import-single
Version: 0.1.6.dev3
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.
        
        |Status| |PackageVersion| |PythonVersions|
        
        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_ as the basis for
        this plugin.
        
        .. _flake8-print: https://github.com/JBKahn/flake8-print
        
        .. |PackageVersion| image:: https://img.shields.io/pypi/v/flake8-import-single.svg?style=flat
            :alt: PyPI version
            :target: https://pypi.org/project/flake8-import-single
        
        .. |PythonVersions| image:: https://img.shields.io/pypi/pyversions/flake8-import-single.svg
            :alt: Supported Python versions
            :target: https://pypi.org/project/flake8-import-single
        
        .. |Status| image:: https://img.shields.io/circleci/project/github/awiddersheim/flake8-import-single/master.svg
            :alt: Build
            :target: https://circleci.com/gh/awiddersheim/flake8-import-single
        
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.*
Provides-Extra: dev
