METADATA 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. Metadata-Version: 2.1
  2. Name: six
  3. Version: 1.16.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. License-File: LICENSE
  19. .. image:: https://img.shields.io/pypi/v/six.svg
  20. :target: https://pypi.org/project/six/
  21. :alt: six on PyPI
  22. .. image:: https://travis-ci.org/benjaminp/six.svg?branch=master
  23. :target: https://travis-ci.org/benjaminp/six
  24. :alt: six on TravisCI
  25. .. image:: https://readthedocs.org/projects/six/badge/?version=latest
  26. :target: https://six.readthedocs.io/
  27. :alt: six's documentation on Read the Docs
  28. .. image:: https://img.shields.io/badge/license-MIT-green.svg
  29. :target: https://github.com/benjaminp/six/blob/master/LICENSE
  30. :alt: MIT License badge
  31. Six is a Python 2 and 3 compatibility library. It provides utility functions
  32. for smoothing over the differences between the Python versions with the goal of
  33. writing Python code that is compatible on both Python versions. See the
  34. documentation for more information on what is provided.
  35. Six supports Python 2.7 and 3.3+. It is contained in only one Python
  36. file, so it can be easily copied into your project. (The copyright and license
  37. notice must be retained.)
  38. Online documentation is at https://six.readthedocs.io/.
  39. Bugs can be reported to https://github.com/benjaminp/six. The code can also
  40. be found there.