Metadata-Version: 2.1
Name: pysorters
Version: 0.0.1
Summary: A package with all sorting algorithms.
Home-page: https://github.com/yo1am1/pysorters
Author: yo1am1
Author-email: bigdiebam@icloud.com
License: MIT
Project-URL: Source, https://github.com/yo1am1/pysorters
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.10
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10, <=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pytest
Requires-Dist: random

# pysorters
###  A Python package with all sort methods.
# Installation
### You can install the package via pip:
```bash
pip install pysorters
```
# Usage
```python
from pysorters import bubble_sort

bubble_sort([3, 2, 1])
# [1, 2, 3]
```
# License
### This project is licensed under the terms of the MIT license.
