Metadata-Version: 2.1
Name: nocaselist
Version: 1.0.4
Summary: A case-insensitive list for Python
Home-page: https://github.com/pywbem/nocaselist
Author: Andreas Maier
Author-email: andreas.r.maier@gmx.de
Maintainer: Andreas Maier
Maintainer-email: andreas.r.maier@gmx.de
License: Apache Software License 2.0
Project-URL: Bug Tracker, https://github.com/pywbem/nocaselist/issues
Project-URL: Documentation, https://nocaselist.readthedocs.io/en/latest/
Project-URL: Source Code, https://github.com/pywbem/nocaselist
Description: nocaselist - A case-insensitive list for Python
        ===============================================
        
        .. image:: https://badge.fury.io/py/nocaselist.svg
            :target: https://pypi.python.org/pypi/nocaselist/
            :alt: Version on Pypi
        
        .. image:: https://github.com/pywbem/nocaselist/workflows/test/badge.svg?branch=master
            :target: https://github.com/pywbem/nocaselist/actions/
            :alt: Actions status
        
        .. image:: https://readthedocs.org/projects/nocaselist/badge/?version=latest
            :target: https://readthedocs.org/projects/nocaselist/builds/
            :alt: Docs build status (master)
        
        .. image:: https://coveralls.io/repos/github/pywbem/nocaselist/badge.svg?branch=master
            :target: https://coveralls.io/github/pywbem/nocaselist?branch=master
            :alt: Test coverage (master)
        
        
        Overview
        --------
        
        Class `NocaseList`_ is a case-insensitive list that preserves the lexical case
        of its items.
        
        Example:
        
        .. code-block:: bash
        
            $ python
            >>> from nocaselist import NocaseList
        
            >>> list1 = NocaseList(['Alpha', 'Beta'])
        
            >>> print(list1)  # Any access is case-preserving
            ['Alpha', 'Beta']
        
            >>> 'ALPHA' in list1  # Any lookup or comparison is case-insensitive
            True
        
        The `NocaseList`_ class supports the functionality of the built-in
        `list class of Python 3.8`_ on all Python versions it supports (except for being
        case-insensitive, of course). This includes the ``clear()`` and ``copy()``
        methods added in Python 3.3 to the built-in ``list`` class.
        
        .. _list class of Python 3.8: https://docs.python.org/3.8/library/stdtypes.html#list
        .. _NocaseList: https://nocaselist.readthedocs.io/en/stable/reference.html#nocaselist.NocaseList
        
        Installation
        ------------
        
        To install the latest released version of the nocaselist package into your
        active Python environment:
        
        .. code-block:: bash
        
            $ pip install nocaselist
        
        The nocaselist package has no prerequisite Python packages.
        
        For more details and alternative ways to install, see `Installation`_.
        
        .. _Installation: https://nocaselist.readthedocs.io/en/stable/intro.html#installation
        
        Documentation
        -------------
        
        * `Documentation <https://nocaselist.readthedocs.io/en/stable/>`_
        
        Change History
        --------------
        
        * `Change history <https://nocaselist.readthedocs.io/en/stable/changes.html>`_
        
        Contributing
        ------------
        
        For information on how to contribute to the nocaselist project, see
        `Contributing <https://nocaselist.readthedocs.io/en/stable/development.html#contributing>`_.
        
        
        License
        -------
        
        The nocaselist project is provided under the
        `Apache Software License 2.0 <https://raw.githubusercontent.com/pywbem/nocaselist/master/LICENSE>`_.
        
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/x-rst
Provides-Extra: test
