Metadata-Version: 2.0
Name: acopy
Version: 0.6.1
Summary: Ant Colony Optimization for Tthe Traveling Salesman Problem.
Home-page: https://github.com/rhgrant10/acopy
Author: Robert Grant
Author-email: rhgrant10@gmail.com
License: Apache Software License 2.0
Keywords: acopy
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: click (==6.7)
Requires-Dist: networkx (==2.1)
Requires-Dist: tsplib95 (==0.3.2)
Provides-Extra: plot
Requires-Dist: matplotlib (==2.1.1); extra == 'plot'
Requires-Dist: pandas (==0.23.3); extra == 'plot'

=====
ACOpy
=====


.. image:: https://img.shields.io/pypi/v/acopy.svg
        :target: https://pypi.python.org/pypi/acopy

.. image:: https://img.shields.io/travis/rhgrant10/acopy.svg
        :target: https://travis-ci.org/rhgrant10/acopy

.. image:: https://readthedocs.org/projects/acopy/badge/?version=latest
        :target: https://acopy.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status

`Ant Colony Optimization`_ for the Traveling Salesman Problem.

* Free software: Apache Software License 2.0
* Documentation: https://acopy.readthedocs.io.


Features
--------

* Uses NetworkX_ for graph representation
* Solver can be customized via plugins
* Has a utility for plotting information about the solving process
* CLI tool that supports reading graphs in a variety of formats (including tsplib95_)
* Support for plotting iteration data using matplotlib and pandas

**ACOpy** was formerly called "Pants."

For now, only Python 3.6+ is supported. If there is demand I will add support for 3.4+.


Credits
-------

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
.. _`Ant Colony Optimization`: http://en.wikipedia.org/wiki/Ant_colony_optimization_algorithms
.. _NetworkX: https://networkx.github.io/
.. _tsplib95: https://tsplib95.readthedocs.io/


=======
History
=======

0.6.1 (2010-10-07)
------------------

* Bump dependency on tsplib95 to 0.3.2

0.6.0 (2018-08-18)
------------------

* First release on PyPI as ``acopy``
* Complete rewrite
* Support for ``networkx``
* Support for ``tsplib95``
* Customizable solver
* Plotting capabilities
* Now uses Apache 2.0 License (formerly GPLv3)
* Supports only python 3.6+


0.5.2 (2014-09-09)
------------------

* Last release on the PyPI as ``ACO-Pants``


