Metadata-Version: 1.0
Name: sorting_anton
Version: 0.2
Summary: This package lets you sort lists using Bubble Sort, Quick Sort, Insertion Sort and Selection Sort
Home-page: UNKNOWN
Author: Anton Benet
Author-email: abenet@rbi.com
License: MIT
Description: # Sorting Anton
        
        This package provides 4 different sorting methods for lists: Bubble Sort, Insertion Sort, Quick Sort and Selection Sort
        
        ## Getting Started
        
        Using this package is very simple
        ### Prerequisites
        
        The testing capability of the package requires unittest and nose to run.
        Sorting functions do not require any other additional packages.
        
        ```
        alist = [54, 26, 93, 17, 77, 31, 44, 55, 20]
        print(bubbleSort(alist))
        ```
        
        ### Installing
        
        Install directly from PyPI using
        
        ```
        pip install sorting
        ```
        
        
        ## Running the tests
        
        You can just run 'test' on the setup file
        
        ```
        $ python setup.py test
        ```
        
        
        ## Authors
        
        * **Anton Benet** - [Personal Website](https://www.antonbenet.com/)
        
        ## License
        
        This project is licensed under the MIT License.
        
        ## Acknowledgments
        
        * Cedric and Ruben from Propulsion Academy
        
Keywords: sorting_anton quick insert bubble selection
Platform: UNKNOWN
