Metadata-Version: 2.0
Name: caniusepython3
Version: 1.2.1
Summary: Determine what projects are blocking you from porting to Python 3
Home-page: https://github.com/brettcannon/caniusepython3
Author: Brett Cannon
Author-email: brett@python.org
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Requires-Dist: distlib
Requires-Dist: setuptools
Requires-Dist: pip
Requires-Dist: argparse
Requires-Dist: futures
Requires-Dist: mock

Can I Use Python 3?
===================

This script takes in a set of dependencies and then figures out which
of them are holding you up from porting to Python 3.

You can specify your dependencies in multiple ways::

    caniusepython3 -r requirements.txt,test-requirement.txt
    caniusepython3 -m PKG-INFO
    caniusepython3 -p numpy,scipy,ipython
    # If your project's setup.py uses setuptools ...
    python setup.py caniusepython3

The output of the script will tell you how many (implicit) dependencies you need
to transition to Python 3 in order to allow you to make the same transition. It
will also list what projects have no explicit dependency blocking their
transition so you can ask them consider starting a port to Python 3.

If you prefer a web interface, please use https://caniusepython3.com by
Jannis Leidel.


