blob: cd5ff4bb8e4fa0a1caf6d3df528abc20b3df5aef [file] [log] [blame]
Keun Soo Yim3b10a5a2017-12-22 19:03:44 -08001Metadata-Version: 1.1
2Name: six
3Version: 1.11.0
4Summary: Python 2 and 3 compatibility utilities
5Home-page: http://pypi.python.org/pypi/six/
6Author: Benjamin Peterson
7Author-email: benjamin@python.org
8License: MIT
9Description: .. 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
35Platform: UNKNOWN
36Classifier: Programming Language :: Python :: 2
37Classifier: Programming Language :: Python :: 3
38Classifier: Intended Audience :: Developers
39Classifier: License :: OSI Approved :: MIT License
40Classifier: Topic :: Software Development :: Libraries
41Classifier: Topic :: Utilities