METADATA 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. Metadata-Version: 2.1
  2. Name: six
  3. Version: 1.15.0
  4. Summary: Python 2 and 3 compatibility utilities
  5. Home-page: https://github.com/benjaminp/six
  6. Author: Benjamin Peterson
  7. Author-email: benjamin@python.org
  8. License: MIT
  9. Platform: UNKNOWN
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Programming Language :: Python :: 2
  12. Classifier: Programming Language :: Python :: 3
  13. Classifier: Intended Audience :: Developers
  14. Classifier: License :: OSI Approved :: MIT License
  15. Classifier: Topic :: Software Development :: Libraries
  16. Classifier: Topic :: Utilities
  17. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*
  18. .. image:: https://img.shields.io/pypi/v/six.svg
  19. :target: https://pypi.org/project/six/
  20. :alt: six on PyPI
  21. .. image:: https://travis-ci.org/benjaminp/six.svg?branch=master
  22. :target: https://travis-ci.org/benjaminp/six
  23. :alt: six on TravisCI
  24. .. image:: https://readthedocs.org/projects/six/badge/?version=latest
  25. :target: https://six.readthedocs.io/
  26. :alt: six's documentation on Read the Docs
  27. .. image:: https://img.shields.io/badge/license-MIT-green.svg
  28. :target: https://github.com/benjaminp/six/blob/master/LICENSE
  29. :alt: MIT License badge
  30. Six is a Python 2 and 3 compatibility library. It provides utility functions
  31. for smoothing over the differences between the Python versions with the goal of
  32. writing Python code that is compatible on both Python versions. See the
  33. documentation for more information on what is provided.
  34. Six supports Python 2.7 and 3.3+. It is contained in only one Python
  35. file, so it can be easily copied into your project. (The copyright and license
  36. notice must be retained.)
  37. Online documentation is at https://six.readthedocs.io/.
  38. Bugs can be reported to https://github.com/benjaminp/six. The code can also
  39. be found there.