Metadata-Version: 2.1
Name: flex-algo
Version: 0.0.5
Summary: Data structures and algorithms
Project-URL: Homepage, https://github.com/boyuan459/flex-algo-py
Project-URL: Bug Tracker, https://github.com/boyuan459/flex-algo-py/issues
Author-email: boyuan459 <boyuan954@gmail.com>
License-File: LICENCE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# This package includes the most common used data structures and algorithms in python

## Install the package
```commandline
pip install flex-algo
```

## Publish to PyPI
```commandline
pip install --upgrade build
pip install --upgrade twine

python -m build
python -m twine upload dist/*
```

## Test the package
```commandline
pip install -e .
pytest tests/*
```
