1 Metadata-Version: 1.2 2 Name: futures 3 Version: 3.2.0 4 Summary: Backport of the concurrent.futures package from Python 3 5 Home-page: https://github.com/agronholm/pythonfutures 6 Author: Alex Grnholm 7 Author-email: alex.gronholm (a] nextday.fi 8 License: PSF 9 Description: .. image:: https://travis-ci.org/agronholm/pythonfutures.svg?branch=master 10 :target: https://travis-ci.org/agronholm/pythonfutures 11 :alt: Build Status 12 13 This is a backport of the `concurrent.futures`_ standard library module to Python 2. 14 15 It should not be installed on Python 3, although there should be no harm in doing so, as the 16 standard library takes precedence over third party libraries. 17 18 To conditionally require this library only on Python 2, you can do this in your ``setup.py``: 19 20 .. code-block:: python 21 22 setup( 23 ... 24 extras_require={ 25 ':python_version == "2.7"': ['futures'] 26 } 27 ) 28 29 Or, using the newer syntax: 30 31 .. code-block:: python 32 33 setup( 34 ... 35 install_requires={ 36 'futures; python_version == "2.7"' 37 } 38 ) 39 40 .. warning:: The ``ProcessPoolExecutor`` class has known (unfixable) problems on Python 2 and 41 should not be relied on for mission critical work. 42 43 .. _concurrent.futures: https://docs.python.org/library/concurrent.futures.html 44 45 Platform: UNKNOWN 46 Classifier: License :: OSI Approved :: Python Software Foundation License 47 Classifier: Development Status :: 5 - Production/Stable 48 Classifier: Intended Audience :: Developers 49 Classifier: Programming Language :: Python :: 2.6 50 Classifier: Programming Language :: Python :: 2.7 51 Classifier: Programming Language :: Python :: 2 :: Only 52 Requires-Python: >=2.6, <3 53