Metadata-Version: 2.1
Name: PySortAlgos
Version: 0.5
Summary: A simple package that contains some commonly used sorting functions
Home-page: https://github.com/your-username/PySortAlgos
Author: Bahir Hakimi
Author-email: bahirhakimy2020@gmail.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# PySort

### A simple repo that contains some commonly used sorting functions

# USAGE

```python
# import your desired sorting function
from PySortAlgos import bubble_sort

# Example list
myList = [799,111,1,3,2,,23,6445,4,89,56,566]

# Sort the list
sorted = bubble_sort(myList)

print(sorted) # [1,2,3,4,7,23,56,89,99,111,566,6445]
```
