METADATA 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. Metadata-Version: 2.1
  2. Name: six
  3. Version: 1.17.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. Classifier: Development Status :: 5 - Production/Stable
  10. Classifier: Programming Language :: Python :: 2
  11. Classifier: Programming Language :: Python :: 3
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: MIT License
  14. Classifier: Topic :: Software Development :: Libraries
  15. Classifier: Topic :: Utilities
  16. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*
  17. License-File: LICENSE
  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://readthedocs.org/projects/six/badge/?version=latest
  22. :target: https://six.readthedocs.io/
  23. :alt: six's documentation on Read the Docs
  24. .. image:: https://img.shields.io/badge/license-MIT-green.svg
  25. :target: https://github.com/benjaminp/six/blob/master/LICENSE
  26. :alt: MIT License badge
  27. Six is a Python 2 and 3 compatibility library. It provides utility functions
  28. for smoothing over the differences between the Python versions with the goal of
  29. writing Python code that is compatible on both Python versions. See the
  30. documentation for more information on what is provided.
  31. Six supports Python 2.7 and 3.3+. It is contained in only one Python
  32. file, so it can be easily copied into your project. (The copyright and license
  33. notice must be retained.)
  34. Online documentation is at https://six.readthedocs.io/.
  35. Bugs can be reported to https://github.com/benjaminp/six. The code can also
  36. be found there.