Metadata-Version: 1.1
Name: pep438
Version: 0.4.0
Summary: Check your requirements for proper PEP 438 usage.
Home-page: https://github.com/treyhunner/pep438
Author: Trey Hunner
Author-email: UNKNOWN
License: The MIT License (MIT)
Copyright © 2013 Trey Hunner

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Description: pep438
        ======
        
        .. image:: https://secure.travis-ci.org/treyhunner/pep438.png?branch=master
           :target: http://travis-ci.org/treyhunner/pep438
        .. image:: https://coveralls.io/repos/treyhunner/pep438/badge.png?branch=master
           :target: https://coveralls.io/r/treyhunner/pep438
        .. image:: https://pypip.in/v/pep438/badge.png
           :target: https://crate.io/packages/pep438
        .. image:: https://pypip.in/d/pep438/badge.png
           :target: https://crate.io/packages/pep438
        
        
        Check packages in your requirements file for proper usage of the `PEP 438`_ tools.
        
        This `online PEP 438 checker`_ is also great.
        
        Installation
        ------------
        
        The script is `available on PyPI`_.  To install with pip:
        
        .. code-block:: bash
        
            $ sudo pip install pep438
        
        Usage
        -----
        
        Check individual packages:
        
        .. code-block:: bash
        
            $ pep438 django pillow
            ✓ django: 0 links
            ✗ pillow: 360 links
        
        Check requirements file:
        
        .. code-block:: bash
        
            $ pep438 -r requirements.txt
            ✓ django: 0 links
            ✗ south: 1 links
            ✓ django-model-utils: 0 links
            ✓ django-simple-history: 0 links
            ✓ django-email-log: 0 links
        
        Check packages of a pypi user:
        
        .. code-block:: bash
        
           $ pep438 -u treyhunner
           ✓ Pycco: 0 links
           ✓ Pycco: 0 links
           ✓ EditorConfig: 0 links
           ✓ names: 0 links
           ✓ django-simple-history: 0 links
           ✓ django-localflavor-us: 0 links
           ✓ django-email-log: 0 links
           ✓ django-relatives: 0 links
           ✓ pep438: 0 links
        
        Check piped input:
        
        .. code-block:: bash
        
            $ cat *-requirements.txt | pep438
            ✓ django: 0 links
            ✗ south: 1 links
            ✓ django-model-utils: 0 links
            ✓ django-simple-history: 0 links
            ✓ django-email-log: 0 links
        
        
        Contributing
        ------------
        
        Pull requests are welcome.  Please read the CONTRIBUTING file for tips on
        submitting pull requests.
        
        
        License
        -------
        
        This project is released under an `MIT License`_.
        
        .. _pep 438: http://www.python.org/dev/peps/pep-0438/
        .. _mit license: http://th.mit-license.org/2013
        .. _available on PyPI: http://pypi.python.org/pypi/pep438/
        .. _online pep 438 checker: http://pypi-externals.caremad.io/
        
        
        
        Changes
        =======
        
        0.4.0
        -----
        
        - Add ``--errors-only`` flag for only displaying problems
        - Add ``--user`` flag for showing all packages from a given PyPI user
        - Fix dependency ``reqfile-parser`` is now ``requirements-parser``
        - Fix incorrect link counts and count URLs instead
        
        0.3.0
        -----
        
        - Improve error message when package not hosted on PyPI
        - Improve README
        
        0.2.0
        -----
        
        - Raise exception when package not hosted on PyPI
        
        0.1.0
        -----
        
        Initial release.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
