Metadata-Version: 2.0
Name: reqcheck
Version: 0.1.4
Summary: Compare installed Python package versions with PyPI
Home-page: https://github.com/jaleskovec/reqcheck
Author: Jozef Leskovec
Author-email: jozefleskovec@gmail.com
License: MIT
Keywords: requirements check compare installed virtualenv venv pypi package packages version versions
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: requests
Requires-Dist: six
Requires-Dist: tabulate

reqcheck
========

Compare installed Python package versions with PyPI. Display the current
version, latest version and age for each installed package.

Example output:

::

      Package        Current Version    Latest Version    Age
      -------------  -----------------  ----------------  -------------------------------
      BeautifulSoup  3.2.0              3.2.1             -1 version (~ 1 year 86 days)
      funcsigs       1.0.2              1.0.2             latest
      mock           2.0.0              2.0.0             latest
      pbr            1.10.0             1.10.0            latest
      requests       2.9.1              2.11.1            -4 versions (~ 240 days)
      six            1.10.0             1.10.0            latest
      wheel          0.24.0             0.30.0a0          -6 versions (~ 2 years 71 days)

Installation
------------

To install reqcheck, simply use pip:

::

    $ pip install reqcheck

Usage
-----

You can check requirements directly using stdin:

::

    $ pip freeze | reqcheck

You can check requirements in a virtualenv:

::

    $ reqcheck -v /path/to/venv

You can check requirements on the command line:

::

    $ reqcheck requests==2.10.0 mock==2.0.0

Contributing
------------

1. Check the pull requests to ensure that your feature hasn't been
   requested already
2. Fork the repository and make your changes in a separate branch
3. Add unit tests for your changes
4. Submit a pull request
5. Contact the maintainer


