Metadata-Version: 2.1
Name: bubble-sorter
Version: 1.0.0
Summary: A quite pointless bubble sort algorithm module.
Home-page: https://github.com/MasterJindu
Author: Joshua Bode
Author-email: joshuabode43@gmail.com
License: UNKNOWN
Description: # Bubble Sort Python
        
        Bubble Sort Python is a Python module for dealing with bubble sort needs in python. Although python already has an in-built sort mechanism — `sort()` I thought this would be a fun project!
        
        ## Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install foobar.
        
        ```bash
        pip install bubble-sorter
        ```
        
        ## Usage
        
        ```python
        import bubble_sorter
        
        bubble_sorter.sort(2, 1, 3, 19, 8, 4) # returns [1, 2, 3, 4, 8, 19]
        bubble_sorter.sort('goose', 'duck', 'cow', 'chicken', 'horse') # returns ['chicken', 'cow', 'duck', 'goose', 'horse']
        
        ```
        ## Support/Contributions
        Raise an issue [here](https://github.com/MasterJindu/Bubble-Sort-Python/issues)
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
