Metadata-Version: 2.1
Name: flake8-import-single
Version: 0.1.3.dev11
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
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
Requires-Dist: flake8
Provides-Extra: dev
Requires-Dist: flake8; extra == 'dev'
Requires-Dist: flake8-bandit; extra == 'dev'
Requires-Dist: flake8-commas; extra == 'dev'
Requires-Dist: flake8-import-order; extra == 'dev'
Requires-Dist: flake8-print; extra == 'dev'
Requires-Dist: flake8-quotes; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: pytest-cov; extra == 'dev'

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


