METADATA 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. Metadata-Version: 2.1
  2. Name: contextlib2
  3. Version: 0.6.0.post1
  4. Summary: Backports and enhancements for the contextlib module
  5. Home-page: http://contextlib2.readthedocs.org
  6. Author: Nick Coghlan
  7. Author-email: ncoghlan@gmail.com
  8. License: PSF License
  9. Platform: UNKNOWN
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: License :: OSI Approved :: Python Software Foundation License
  12. Classifier: Programming Language :: Python :: 2
  13. Classifier: Programming Language :: Python :: 2.7
  14. Classifier: Programming Language :: Python :: 3
  15. Classifier: Programming Language :: Python :: 3.4
  16. Classifier: Programming Language :: Python :: 3.5
  17. Classifier: Programming Language :: Python :: 3.6
  18. Classifier: Programming Language :: Python :: 3.7
  19. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
  20. .. image:: https://jazzband.co/static/img/badge.svg
  21. :target: https://jazzband.co/
  22. :alt: Jazzband
  23. .. image:: https://readthedocs.org/projects/contextlib2/badge/?version=latest
  24. :target: https://contextlib2.readthedocs.org/
  25. :alt: Latest Docs
  26. .. image:: https://img.shields.io/travis/jazzband/contextlib2/master.svg
  27. :target: http://travis-ci.org/jazzband/contextlib2
  28. .. image:: https://coveralls.io/repos/github/jazzband/contextlib2/badge.svg?branch=master
  29. :target: https://coveralls.io/github/jazzband/contextlib2?branch=master
  30. .. image:: https://landscape.io/github/jazzband/contextlib2/master/landscape.svg
  31. :target: https://landscape.io/github/jazzband/contextlib2/
  32. contextlib2 is a backport of the `standard library's contextlib
  33. module <https://docs.python.org/3.5/library/contextlib.html>`_ to
  34. earlier Python versions.
  35. It also serves as a real world proving ground for possible future
  36. enhancements to the standard library version.
  37. Development
  38. -----------
  39. contextlib2 has no runtime dependencies, but requires ``unittest2`` for testing
  40. on Python 2.x, as well as ``setuptools`` and ``wheel`` to generate universal
  41. wheel archives.
  42. Local testing is just a matter of running ``python test_contextlib2.py``.
  43. You can test against multiple versions of Python with
  44. `tox <https://tox.testrun.org/>`_::
  45. pip install tox
  46. tox
  47. Versions currently tested in both tox and Travis CI are:
  48. * CPython 2.7
  49. * CPython 3.4
  50. * CPython 3.5
  51. * CPython 3.6
  52. * CPython 3.7
  53. * PyPy
  54. * PyPy3