1 Metadata-Version: 1.1 2 Name: six 3 Version: 1.11.0 4 Summary: Python 2 and 3 compatibility utilities 5 Home-page: http://pypi.python.org/pypi/six/ 6 Author: Benjamin Peterson 7 Author-email: benjamin (a] python.org 8 License: MIT 9 Description: .. image:: http://img.shields.io/pypi/v/six.svg 10 :target: https://pypi.python.org/pypi/six 11 12 .. image:: https://travis-ci.org/benjaminp/six.svg?branch=master 13 :target: https://travis-ci.org/benjaminp/six 14 15 .. image:: http://img.shields.io/badge/license-MIT-green.svg 16 :target: https://github.com/benjaminp/six/blob/master/LICENSE 17 18 Six is a Python 2 and 3 compatibility library. It provides utility functions 19 for smoothing over the differences between the Python versions with the goal of 20 writing Python code that is compatible on both Python versions. See the 21 documentation for more information on what is provided. 22 23 Six supports every Python version since 2.6. It is contained in only one Python 24 file, so it can be easily copied into your project. (The copyright and license 25 notice must be retained.) 26 27 Online documentation is at http://six.rtfd.org. 28 29 Bugs can be reported to https://github.com/benjaminp/six. The code can also 30 be found there. 31 32 For questions about six or porting in general, email the python-porting mailing 33 list: https://mail.python.org/mailman/listinfo/python-porting 34 35 Platform: UNKNOWN 36 Classifier: Programming Language :: Python :: 2 37 Classifier: Programming Language :: Python :: 3 38 Classifier: Intended Audience :: Developers 39 Classifier: License :: OSI Approved :: MIT License 40 Classifier: Topic :: Software Development :: Libraries 41 Classifier: Topic :: Utilities 42