Metadata-Version: 1.1
Name: mazepy
Version: 0.3
Summary: Setuptools setup.py for mazepy.
Home-page: https://github.com/samisalkosuo/mazepy
Author: Sami Salkosuo
Author-email: dev@rnd-dev.com
License: MIT
Description: mazepy
        ======
        
        Maze classes for Python. Translated from Ruby sources in the book "Mazes for Programmers" by Jamis Buck (https://pragprog.com/book/jbmaze/mazes-for-programmers).
        
        Includes additional code not in the aforementioned book.
        
        Requirements
        ------------
        
        Python 3.
        
        Install
        -------
        
        Install latest version: **pip install mazepy**.
        
        Usage
        -----
        
        Use with other programs like this:: 
        
          from mazepy import mazepy
        
          grid=mazepy.Grid(10,20)
          grid=mazepy.getRandomMaze(grid)
          print("%s Maze:" % grid.algorithm)
          print(grid)
        
        and output of the above program would be similar to::
        
          Recursive Backtracker Maze:
          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
          |       |               |                   |               |           |       |
          +   +   +   +---+---+   +   +   +---+---+---+   +---+   +   +   +---+---+   +   +
          |   |   |   |           |   |       |           |       |   |               |   |
          +   +---+   +---+---+---+---+   +   +   +---+---+   +---+   +---+   +---+---+   +
          |       |       |           |   |           |       |   |       |       |       |
          +   +   +---+   +   +   +   +---+---+---+---+   +---+   +---+   +---+---+   +---+
          |   |       |   |   |   |           |           |   |       |           |       |
          +   +---+   +   +   +   +---+---+   +   +---+---+   +   +   +---+---+   +   +   +
          |   |       |   |   |   |       |   |   |           |   |           |   |   |   |
          +   +   +   +   +---+   +---+   +   +   +   +   +---+   +---+---+   +   +   +   +
          |   |   |   |       |   |       |   |   |   |   |       |   |       |   |   |   |
          +   +   +---+---+   +   +   +---+   +   +   +---+   +---+   +   +---+   +---+   +
          |   |           |       |   |       |   |       |           |       |           |
          +   +---+---+   +---+---+   +   +---+   +   +   +---+---+   +---+   +---+---+   +
          |           |       |           |       |   |           |   |   |       |       |
          +---+---+   +---+   +   +---+---+   +---+   +---+---+   +   +   +   +   +   +---+
          |       |   |       |   |           |   |       |       |       |   |   |       |
          +   +---+   +   +---+   +---+---+   +   +---+   +   +---+---+   +   +---+---+   +
          |           |                       |           |               |               |
          +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
        
        See also: mazingame (https://github.com/samisalkosuo/mazingame)
        
        License
        -------
        
        The MIT license for my own code. 
        
        Original Ruby code::
          
          #---
          # Excerpted from "Mazes for Programmers",
          # published by The Pragmatic Bookshelf.
          # Copyrights apply to this code. It may not be used to create training material, 
          # courses, books, articles, and the like. Contact us if you are in doubt.
          # We make no guarantees that this code is fit for any purpose. 
          # Visit http://www.pragmaticprogrammer.com/titles/jbmaze for more book information.
          #--- 
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3 :: Only
