Metadata-Version: 1.1
Name: collection-plus
Version: 0.0.6
Summary: Collection utils
Home-page: https://github.com/bruca/collections
Author: Bruca Lock
Author-email: lockshi@hotmail.com
License: UNKNOWN
Description: Description
        ------------
        List of collections similar to JAVA style collection for Python
        
        Installation
        ============
        
        ::
        
            $ pip install collection-plus
        
        
        Usage
        =====
        
        .. code-block:: python
        
            from collection import *
        
            l = List()
            l.add(1)
            l.is_empty()
        
            vec = Vector()
            vec.add(1)
        
            stack = Stack()
            stack.push(1)
            stack.pop()
            item = stack.peek()
        
            queue = Queue()
            queue.offer(1)
            item = queue.peek()
            queue.poll()
        
        Build Project
        =============
        source distribution: python setup.py sdist
        wheel distribution:  python setup.py bdist_wheel
        
        
        Distribute
        ==========
        test repo: twine upload --repository-url https://test.pypi.org/legacy/ dist/*
        prod repo: twine upload dist/*
Keywords: collection collections
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
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
