Metadata-Version: 1.1
Name: future
Version: 0.0.2
Summary: [experimental] support Python 2 with fewer warts
Home-page: http://github.com/edschofield/python-future
Author: Ed Schofield
Author-email: ed@pythoncharmers.com
License: MIT
Description: 
        The ``future`` module helps run Python 3.x-compatible code under Python 2.
        
        It allows people to write clean, modern Python 3.x-compatible code today and to
        run it with minimal effort under Python 2 alongside a Python 2 stack that may
        contain dependencies that have not yet been ported to Python 3.
        
        It is designed to be used as follows:
        
            from __future__ import division, absolute_import, print_function
            from future import common_iterators, super, disable_obsolete_builtins
        
        Eventually, we may also support this:
            from future import standard_library
        
        to bring in the new module names from the Python 3 standard library.
        
Keywords: future python3 migration backport
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
