Metadata-Version: 1.1
Name: antstar
Version: 0.2.1.1
Summary: Found path in 2d environment as blind ant
Home-page: https://github.com/buxx/AntStar
Author: Bastien Sevajol
Author-email: antstar@bux.fr
License: UNKNOWN
Description: # AntStar
        Python lib to find path in 2d environment to an objective, with limited around information
        
        ##  Example
        
        for a given map:
        
        ```
        0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
        0 X 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
        0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
        0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
        0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
        0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0
        0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0
        0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 0
        0 0 0 0 0 0 0 1 1 0 1 1 1 1 1 1 1 1 1 0
        0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0
        0 0 0 0 0 0 0 1 0 1 1 1 1 1 1 1 0 0 0 0
        0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0
        0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0
        0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 1 0 0 0 0
        0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0
        0 0 0 0 0 0 0 1 0 1 1 1 1 1 0 0 0 0 0 0
        0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
        0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
        0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 S 0
        0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
        ```
        
        Where ``0`` is free way, ``1`` a wall, ``S`` the start point of our ant, ``X`` the objective, ``,`` the memory of road done since blocked by a wall and ``A`` is ant.
        
        [![AntStar exemple gif](https://raw.githubusercontent.com/buxx/AntStar/master/doc/antstar.gif)](https://raw.githubusercontent.com/buxx/AntStar/master/doc/antstar.gif) 
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 3 - Alpha
Classifier: Natural Language :: French
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.4
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
