Metadata-Version: 2.0
Name: pyalgos
Version: 0.1.0
Summary: UNKNOWN
Home-page: https://github.com/bharadwajyarlagadda/pyalgos
Author: Bharadwaj Yarlagadda
Author-email: yarlagaddabharadwaj@gmail.com
License: MIT License
Keywords: algorithms sorting insertion selection
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5

*******
pyalgos
*******

|version| |travis| |coveralls| |license|

pyalgos is a package for implementing various algorithms:

- Sorting

  - Insertion Sort
  - Selection Sort

Links
=====

- Project: https://github.com/bharadwajyarlagadda/pyalgos
- Documentation: http://pyalgos.readthedocs.io
- Pypi: https://pypi.python.org/pypi/pyalgos
- TravisCI: https://travis-ci.org/bharadwajyarlagadda/pyalgos

Features
========

- Supported on Python 2.7 and Python 3.3+.


.. |version| image:: https://img.shields.io/pypi/v/pyalgos.svg?style=flat-square
    :target: https://pypi.python.org/pypi/pyalgos/

.. |travis| image:: https://img.shields.io/travis/bharadwajyarlagadda/pyalgos/master.svg?style=flat-square
    :target: https://travis-ci.org/bharadwajyarlagadda/pyalgos

.. |coveralls| image:: https://img.shields.io/coveralls/bharadwajyarlagadda/pyalgos/master.svg?style=flat-square
    :target: https://coveralls.io/r/bharadwajyarlagadda/pyalgos

.. |license| image:: https://img.shields.io/pypi/l/pyalgos.svg?style=flat-square
    :target: https://pypi.python.org/pypi/pyalgos/


Changelog
=========

v0.1.0
------

- First release.
- Added ``insertion()`` method for implementing insertion sort algorithm.
- Added ``selection()`` method for implementing selection sort algorithm.


